diff --git a/src/Resources/ResourceManager/Implementation/DeploymentScripts/GetAzDeploymentScriptLog.cs b/src/Resources/ResourceManager/Implementation/DeploymentScripts/GetAzDeploymentScriptLog.cs
index 522fc5d40ab1..9cda08e5b373 100644
--- a/src/Resources/ResourceManager/Implementation/DeploymentScripts/GetAzDeploymentScriptLog.cs
+++ b/src/Resources/ResourceManager/Implementation/DeploymentScripts/GetAzDeploymentScriptLog.cs
@@ -45,10 +45,11 @@ public class GetAzDeploymentScriptLog : DeploymentScriptCmdletBase
[ResourceIdCompleter("Microsoft.Resources/deploymentScripts")]
public string DeploymentScriptResourceId { get; set; }
+ [Alias("DeploymentScriptInputObject")]
[Parameter(Position = 0, ParameterSetName = GetDeploymentScriptLogByInputObject, Mandatory = true, ValueFromPipeline = true,
HelpMessage = "The deployment script PowerShell object.")]
[ValidateNotNullOrEmpty]
- public PsDeploymentScript DeploymentScriptInputObject { get; set; }
+ public PsDeploymentScript DeploymentScriptObject { get; set; }
[Parameter(Position = 2, ParameterSetName = GetDeploymentScriptLogByName, Mandatory = false, HelpMessage = "Limit output to last n lines")]
[Parameter(Position = 1, ParameterSetName = GetDeploymentScriptLogByResourceId, Mandatory = false, HelpMessage = "Limit output to last n lines")]
@@ -81,8 +82,8 @@ public override void ExecuteCmdlet()
break;
case GetDeploymentScriptLogByInputObject:
deploymentScriptLog = DeploymentScriptsSdkClient.GetDeploymentScriptLog(
- DeploymentScriptInputObject.Name,
- ResourceIdUtility.GetResourceGroupName(DeploymentScriptInputObject.Id),
+ DeploymentScriptObject.Name,
+ ResourceIdUtility.GetResourceGroupName(DeploymentScriptObject.Id),
tailParam);
break;
default:
diff --git a/src/Resources/ResourceManager/Implementation/DeploymentScripts/RemoveAzDeploymentScript.cs b/src/Resources/ResourceManager/Implementation/DeploymentScripts/RemoveAzDeploymentScript.cs
index 57da179d06f8..b0fc99f11ea1 100644
--- a/src/Resources/ResourceManager/Implementation/DeploymentScripts/RemoveAzDeploymentScript.cs
+++ b/src/Resources/ResourceManager/Implementation/DeploymentScripts/RemoveAzDeploymentScript.cs
@@ -61,25 +61,31 @@ public override void ExecuteCmdlet()
{
try
{
+ string scriptName = "";
+
switch (ParameterSetName)
{
case RemoveDeploymentScriptByName:
- if (ShouldProcess(Name, "Remove Deployment Script"))
+ scriptName = Name;
+ if (ShouldProcess(scriptName, "Remove Deployment Script"))
{
- DeploymentScriptsSdkClient.DeleteDeploymentScript(Name, ResourceGroupName);
+ DeploymentScriptsSdkClient.DeleteDeploymentScript(scriptName, ResourceGroupName);
}
break;
case RemoveDeploymentScriptByResourceId:
- if (ShouldProcess(Name, "Remove Deployment Script"))
+ scriptName = ResourceIdUtility.GetResourceName(this.Id);
+ if (ShouldProcess(scriptName, "Remove Deployment Script"))
{
- DeploymentScriptsSdkClient.DeleteDeploymentScript( ResourceIdUtility.GetResourceName(this.Id),
+ DeploymentScriptsSdkClient.DeleteDeploymentScript(scriptName,
ResourceIdUtility.GetResourceGroupName(this.Id));
}
break;
case RemoveDeploymentScriptByInputObject:
- if (ShouldProcess(Name, "Remove Deployment Script"))
+ scriptName = InputObject.Name;
+ if (ShouldProcess(scriptName, "Remove Deployment Script"))
{
- DeploymentScriptsSdkClient.DeleteDeploymentScript(InputObject.Name, ResourceIdUtility.GetResourceGroupName(InputObject.Id));
+ DeploymentScriptsSdkClient.DeleteDeploymentScript(scriptName,
+ ResourceIdUtility.GetResourceGroupName(InputObject.Id));
}
break;
default:
diff --git a/src/Resources/ResourceManager/Implementation/DeploymentScripts/SaveAzDeploymentScriptLog.cs b/src/Resources/ResourceManager/Implementation/DeploymentScripts/SaveAzDeploymentScriptLog.cs
index b7f4cabae5f1..2417907810a0 100644
--- a/src/Resources/ResourceManager/Implementation/DeploymentScripts/SaveAzDeploymentScriptLog.cs
+++ b/src/Resources/ResourceManager/Implementation/DeploymentScripts/SaveAzDeploymentScriptLog.cs
@@ -21,6 +21,7 @@
using System;
using System.IO;
using System.Management.Automation;
+using System.Text;
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
{
@@ -53,11 +54,12 @@ public class SaveAzDeploymentScriptLog : DeploymentScriptCmdletBase
[ResourceIdCompleter("Microsoft.Resources/deploymentScripts")]
public string DeploymentScriptResourceId { get; set; }
+ [Alias("DeploymentScriptInputObject")]
[Parameter(Position = 0, ParameterSetName = SaveDeploymentScriptLogByInputObject, Mandatory = true,
ValueFromPipeline = true,
HelpMessage = "The deployment script PowerShell object.")]
[ValidateNotNullOrEmpty]
- public PsDeploymentScript DeploymentScriptInputObject { get; set; }
+ public PsDeploymentScript DeploymentScriptObject { get; set; }
[Parameter(Position = 2, ParameterSetName = SaveDeploymentScriptLogByName, Mandatory = true, HelpMessage = "The directory path to save deployment script log.")]
[Parameter(Position = 1, ParameterSetName = SaveDeploymentScriptLogByResourceId, Mandatory = true, HelpMessage = "The directory path to save deployment script log.")]
@@ -84,25 +86,28 @@ public override void ExecuteCmdlet()
PsDeploymentScriptLog deploymentScriptLog;
int tailParam = this.IsParameterBound(c => c.Tail) ? Tail : 0;
+ string scriptName = "";
try
{
switch (ParameterSetName)
{
case SaveDeploymentScriptLogByName:
+ scriptName = Name;
deploymentScriptLog =
- DeploymentScriptsSdkClient.GetDeploymentScriptLog(Name, ResourceGroupName, tailParam);
+ DeploymentScriptsSdkClient.GetDeploymentScriptLog(scriptName, ResourceGroupName, tailParam);
break;
case SaveDeploymentScriptLogByResourceId:
- deploymentScriptLog = DeploymentScriptsSdkClient.GetDeploymentScriptLog(
- ResourceIdUtility.GetResourceName(this.DeploymentScriptResourceId),
+ scriptName = ResourceIdUtility.GetResourceName(this.DeploymentScriptResourceId);
+ deploymentScriptLog = DeploymentScriptsSdkClient.GetDeploymentScriptLog(scriptName,
ResourceIdUtility.GetResourceGroupName(this.DeploymentScriptResourceId),
tailParam);
break;
case SaveDeploymentScriptLogByInputObject:
+ scriptName = DeploymentScriptObject.Name;
deploymentScriptLog = DeploymentScriptsSdkClient.GetDeploymentScriptLog(
- DeploymentScriptInputObject.Name,
- ResourceIdUtility.GetResourceGroupName(DeploymentScriptInputObject.Id),
+ scriptName,
+ ResourceIdUtility.GetResourceGroupName(DeploymentScriptObject.Id),
tailParam);
break;
default:
@@ -118,13 +123,26 @@ public override void ExecuteCmdlet()
this.ConfirmAction(
this.Force || !AzureSession.Instance.DataStore.FileExists(outputPathWithFileName),
string.Format(
- Properties.Resources.DeploymentScriptLogFileExists, Name, OutputPath),
+ Properties.Resources.DeploymentScriptLogFileExists, scriptName, OutputPath),
Properties.Resources.DeploymentScriptShouldProcessString,
OutputPath,
() =>
{
+ //Standardize newline character to be written into file
+ StringBuilder logs = new StringBuilder();
+ StringReader stringReader = new StringReader(deploymentScriptLog.Log);
+
+ String line = stringReader.ReadLine();
+ while(line != null)
+ {
+ logs.Append(line);
+ line = stringReader.ReadLine();
+ if (line != null)
+ logs.Append(Environment.NewLine);
+ }
+
AzureSession.Instance.DataStore.WriteFile(outputPathWithFileName,
- deploymentScriptLog.Log);
+ logs.ToString());
WriteObject(new PsDeploymentScriptLogPath() {Path = outputPathWithFileName});
});
diff --git a/src/Resources/ResourceManager/ResourceManager.format.ps1xml b/src/Resources/ResourceManager/ResourceManager.format.ps1xml
index 5d76344f9dc4..298ec5f47cb6 100644
--- a/src/Resources/ResourceManager/ResourceManager.format.ps1xml
+++ b/src/Resources/ResourceManager/ResourceManager.format.ps1xml
@@ -342,6 +342,10 @@
$_.Status.ContainerInstanceId
+
+
+ OutputsString
+
RetentionInterval
diff --git a/src/Resources/ResourceManager/SdkExtensions/ResourcesExtensions.cs b/src/Resources/ResourceManager/SdkExtensions/ResourcesExtensions.cs
index f928699267df..f2e286f74b1d 100644
--- a/src/Resources/ResourceManager/SdkExtensions/ResourcesExtensions.cs
+++ b/src/Resources/ResourceManager/SdkExtensions/ResourcesExtensions.cs
@@ -195,6 +195,35 @@ private static string ConstructTemplateLinkView(TemplateLink templateLink)
return result.ToString();
}
+ public static string ConstructOutputTable(IDictionary dictionary)
+ {
+ if (dictionary == null)
+ {
+ return null;
+ }
+
+ var maxNameLength = 18;
+ dictionary.Keys.ForEach(k => maxNameLength = Math.Max(maxNameLength, k.Length + 2));
+
+ StringBuilder output = new StringBuilder();
+
+ if (dictionary.Count > 0)
+ {
+ string rowFormat = "{0, -" + maxNameLength + "} {1}\r\n";
+ output.AppendLine();
+ output.AppendFormat(rowFormat, "Key", "Value");
+ output.AppendFormat(rowFormat, GeneralUtilities.GenerateSeparator(maxNameLength, "="), GeneralUtilities.GenerateSeparator(maxNameLength, "="));
+
+ foreach (KeyValuePair pair in dictionary)
+ {
+ String val = pair.Value.ToString().Replace("\n", "\n" + GeneralUtilities.GenerateSeparator(maxNameLength, " ") + " ");
+ output.AppendFormat(rowFormat, pair.Key, val);
+ }
+ }
+
+ return output.ToString();
+ }
+
public static string ConstructDeploymentVariableTable(Dictionary dictionary)
{
if (dictionary == null)
diff --git a/src/Resources/ResourceManager/SdkModels/DeploymentScripts/PsDeploymentScript.cs b/src/Resources/ResourceManager/SdkModels/DeploymentScripts/PsDeploymentScript.cs
index e3bee8d93348..b7c2f98d4bd1 100644
--- a/src/Resources/ResourceManager/SdkModels/DeploymentScripts/PsDeploymentScript.cs
+++ b/src/Resources/ResourceManager/SdkModels/DeploymentScripts/PsDeploymentScript.cs
@@ -12,6 +12,7 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkExtensions;
using Microsoft.Azure.Management.ResourceManager.Models;
using System.Collections.Generic;
@@ -25,6 +26,11 @@ public class PsDeploymentScript : PsAzureScriptBase
public IDictionary Tags { get; set; }
- public string ScriptKind { get; set; }
+ public string ScriptKind { get; set; }
+
+ public string OutputsString
+ {
+ get { return ResourcesExtensions.ConstructOutputTable(Outputs); }
+ }
}
}
diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentScriptsTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentScriptsTests.ps1
index 5b24232e4602..2044df5a0e69 100644
--- a/src/Resources/Resources.Test/ScenarioTests/DeploymentScriptsTests.ps1
+++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentScriptsTests.ps1
@@ -268,7 +268,7 @@ function Test-GetDeploymentScriptLog-PowerShell
#Test - GetLogByInputObject
$deploymentScript = Get-AzDeploymentScript -ResourceGroupName $rgname -Name $deploymentScriptName
- $getLogByInputObject = Get-AzDeploymentScriptLog -DeploymentScriptInputObject $deploymentScript
+ $getLogByInputObject = Get-AzDeploymentScriptLog -DeploymentScriptObject $deploymentScript
# Assert
Assert-NotNull $getLogByInputObject
@@ -277,7 +277,7 @@ function Test-GetDeploymentScriptLog-PowerShell
#Test - GetLogByInputObject - WithTailParameter
$deploymentScript = Get-AzDeploymentScript -ResourceGroupName $rgname -Name $deploymentScriptName
- $getLogByInputObjectWithTail = Get-AzDeploymentScriptLog -DeploymentScriptInputObject $deploymentScript -Tail $tailInteger
+ $getLogByInputObjectWithTail = Get-AzDeploymentScriptLog -DeploymentScriptObject $deploymentScript -Tail $tailInteger
$tail = [math]::min( ($getLogByInputObject.Log -split '\n').count, $tailInteger)
# Assert
@@ -359,7 +359,7 @@ function Test-GetDeploymentScriptLog-Cli
#Test - GetLogByInputObject
$deploymentScript = Get-AzDeploymentScript -ResourceGroupName $rgname -Name $deploymentScriptName
- $getLogByInputObject = Get-AzDeploymentScriptLog -DeploymentScriptInputObject $deploymentScript
+ $getLogByInputObject = Get-AzDeploymentScriptLog -DeploymentScriptObject $deploymentScript
# Assert
Assert-NotNull $getLogByInputObject
@@ -369,7 +369,7 @@ function Test-GetDeploymentScriptLog-Cli
#Test - GetLogByInputObject - WithTailParameter
$deploymentScript = Get-AzDeploymentScript -ResourceGroupName $rgname -Name $deploymentScriptName
- $getLogByInputObjectWithTail = Get-AzDeploymentScriptLog -DeploymentScriptInputObject $deploymentScript -Tail $tailInteger
+ $getLogByInputObjectWithTail = Get-AzDeploymentScriptLog -DeploymentScriptObject $deploymentScript -Tail $tailInteger
$tail = [math]::min( ($getLogByResourceId.Log -split '\r').count, $tailInteger)
# Assert
@@ -463,8 +463,8 @@ function Test-TrySaveNonExistingFilePathForLogFile
$path = (Get-Item ".\").FullName
$fullPath = Join-Path $path $badPath
$exceptionMessage = "Cannot find path '$fullPath'"
- Assert-Throws { Save-AzDeploymentScriptLog -DeploymentScriptInputObject $deploymentScript -OutputPath $badPath } $exceptionMessage
- Assert-Throws { Save-AzDeploymentScriptLog -DeploymentScriptInputObject $deploymentScript -OutputPath $badPath -Tail $tailInteger} $exceptionMessage
+ Assert-Throws { Save-AzDeploymentScriptLog -DeploymentScriptObject $deploymentScript -OutputPath $badPath } $exceptionMessage
+ Assert-Throws { Save-AzDeploymentScriptLog -DeploymentScriptObject $deploymentScript -OutputPath $badPath -Tail $tailInteger} $exceptionMessage
}
finally
{
diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForCli.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForCli.json
index ca99bcb6756f..9e68994a4796 100644
--- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForCli.json
+++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForCli.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47b3854f-cf89-4044-924a-ff874cc7f2ec"
+ "eb10932f-6b3b-4bf8-89b6-296fb3c3212e"
],
"Accept-Language": [
"en-US"
@@ -33,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "c0804bd9-3b12-4b6f-a834-7fd0bc48da4a"
+ "f9df4888-66f7-46ec-baa7-8d26a6e28da6"
],
"x-ms-correlation-request-id": [
- "c0804bd9-3b12-4b6f-a834-7fd0bc48da4a"
+ "f9df4888-66f7-46ec-baa7-8d26a6e28da6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223123Z:c0804bd9-3b12-4b6f-a834-7fd0bc48da4a"
+ "NORTHCENTRALUS:20200519T191137Z:f9df4888-66f7-46ec-baa7-8d26a6e28da6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:23 GMT"
+ "Tue, 19 May 2020 19:11:37 GMT"
],
"Content-Length": [
"98"
@@ -67,13 +67,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a21a1e4f-adf1-4fb4-9879-ffbed9d8325e"
+ "4d901fa3-bd85-4226-a812-e5d512c3dd60"
],
"Accept-Language": [
"en-US"
@@ -96,13 +96,13 @@
"11999"
],
"x-ms-request-id": [
- "532f646e-aa25-4dcd-84eb-e7748fd434b3"
+ "82023391-8784-4b82-a98e-c809b1011b8e"
],
"x-ms-correlation-request-id": [
- "532f646e-aa25-4dcd-84eb-e7748fd434b3"
+ "82023391-8784-4b82-a98e-c809b1011b8e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223243Z:532f646e-aa25-4dcd-84eb-e7748fd434b3"
+ "NORTHCENTRALUS:20200519T191330Z:82023391-8784-4b82-a98e-c809b1011b8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:43 GMT"
+ "Tue, 19 May 2020 19:13:30 GMT"
],
"Content-Length": [
"0"
@@ -127,13 +127,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2b35e48-fb41-40a9-bab1-028c0e32981a"
+ "e6c7f9c4-d26c-4c2b-a53d-28bbe4a42c60"
],
"Accept-Language": [
"en-US"
@@ -162,13 +162,13 @@
"1199"
],
"x-ms-request-id": [
- "fe9bf35a-f907-486d-a15a-f8c609970e41"
+ "565c238f-7a45-4b95-8684-7d27441631a0"
],
"x-ms-correlation-request-id": [
- "fe9bf35a-f907-486d-a15a-f8c609970e41"
+ "565c238f-7a45-4b95-8684-7d27441631a0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223125Z:fe9bf35a-f907-486d-a15a-f8c609970e41"
+ "NORTHCENTRALUS:20200519T191139Z:565c238f-7a45-4b95-8684-7d27441631a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -177,7 +177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:24 GMT"
+ "Tue, 19 May 2020 19:11:38 GMT"
],
"Content-Length": [
"210"
@@ -192,17 +192,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\",\r\n \"name\": \"ps5732\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\",\r\n \"name\": \"ps8995\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/validate?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/validate?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDgvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7fcef1e0-dd0c-4153-b0cf-63a064a4ae68"
+ "a9120c8b-54e5-480a-88d8-e6c0c0b7d49f"
],
"Accept-Language": [
"en-US"
@@ -231,13 +231,13 @@
"1199"
],
"x-ms-request-id": [
- "74f6fa2b-b2e1-443c-8f5b-f0e125612cbb"
+ "c592c7c5-4d56-4b90-82ca-42b0054e8de9"
],
"x-ms-correlation-request-id": [
- "74f6fa2b-b2e1-443c-8f5b-f0e125612cbb"
+ "c592c7c5-4d56-4b90-82ca-42b0054e8de9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223126Z:74f6fa2b-b2e1-443c-8f5b-f0e125612cbb"
+ "NORTHCENTRALUS:20200519T191141Z:c592c7c5-4d56-4b90-82ca-42b0054e8de9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -246,7 +246,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:26 GMT"
+ "Tue, 19 May 2020 19:11:40 GMT"
],
"Content-Length": [
"1634"
@@ -261,17 +261,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"10b6c982-1cae-4945-912f-0be6ca9d9909\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:31:25.8534069Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"74f6fa2b-b2e1-443c-8f5b-f0e125612cbb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-10b6c982-1cae-4945-912f-0be6ca9d9909\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"f1f47a70-fd16-4298-97ba-0af8b6e1bb84\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-19T19:11:40.2348286Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c592c7c5-4d56-4b90-82ca-42b0054e8de9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-f1f47a70-fd16-4298-97ba-0af8b6e1bb84\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "341ef33d-b357-4d1b-a7ed-36ed749f5a3c"
+ "167e8ad4-d4f3-4d87-8891-5bd90493613d"
],
"Accept-Language": [
"en-US"
@@ -297,19 +297,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operationStatuses/08586121977984004440?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operationStatuses/08586116913838726468?api-version=2019-10-01"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "334395e4-1cc9-43fd-a4da-973bfb150f21"
+ "1ee86c18-63e7-477d-8147-e0f4f388d56a"
],
"x-ms-correlation-request-id": [
- "334395e4-1cc9-43fd-a4da-973bfb150f21"
+ "1ee86c18-63e7-477d-8147-e0f4f388d56a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223128Z:334395e4-1cc9-43fd-a4da-973bfb150f21"
+ "NORTHCENTRALUS:20200519T191142Z:1ee86c18-63e7-477d-8147-e0f4f388d56a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -318,7 +318,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:28 GMT"
+ "Tue, 19 May 2020 19:11:42 GMT"
],
"Content-Length": [
"1425"
@@ -333,17 +333,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:31:27.7457749Z\",\r\n \"duration\": \"PT0.6685928S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-19T19:11:42.3801439Z\",\r\n \"duration\": \"PT0.7751429S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21c6b231-b1df-4681-9480-6678cb74dc70"
+ "fc479e48-bf32-45cd-9b6d-0c53be537afa"
],
"Accept-Language": [
"en-US"
@@ -366,13 +366,13 @@
"11999"
],
"x-ms-request-id": [
- "966231ab-65a7-4647-9946-fb743064e438"
+ "bee29801-7850-448e-8c59-ff04b2fb00be"
],
"x-ms-correlation-request-id": [
- "966231ab-65a7-4647-9946-fb743064e438"
+ "bee29801-7850-448e-8c59-ff04b2fb00be"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223128Z:966231ab-65a7-4647-9946-fb743064e438"
+ "NORTHCENTRALUS:20200519T191143Z:bee29801-7850-448e-8c59-ff04b2fb00be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,7 +381,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:28 GMT"
+ "Tue, 19 May 2020 19:11:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -400,13 +400,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ae8c4a0-c94b-4f31-8d2a-414c7c8ec0e6"
+ "44ac121b-ab1c-422d-afa2-d8033815678e"
],
"Accept-Language": [
"en-US"
@@ -429,13 +429,13 @@
"11997"
],
"x-ms-request-id": [
- "d120040b-c1c9-45a3-b8c1-634406b20d43"
+ "53218854-1949-4db8-a597-3b906f113b81"
],
"x-ms-correlation-request-id": [
- "d120040b-c1c9-45a3-b8c1-634406b20d43"
+ "53218854-1949-4db8-a597-3b906f113b81"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223128Z:d120040b-c1c9-45a3-b8c1-634406b20d43"
+ "NORTHCENTRALUS:20200519T191143Z:53218854-1949-4db8-a597-3b906f113b81"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:28 GMT"
+ "Tue, 19 May 2020 19:11:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -463,13 +463,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "381046f4-5755-4e72-b63e-ce6f11f2c325"
+ "83a943ea-ce35-4d72-bab2-76020fb0431e"
],
"Accept-Language": [
"en-US"
@@ -492,13 +492,13 @@
"11995"
],
"x-ms-request-id": [
- "db1376d5-82e9-4c02-9c2b-7d7ca7369f3f"
+ "8c9fd263-693b-4664-af8b-60267784782a"
],
"x-ms-correlation-request-id": [
- "db1376d5-82e9-4c02-9c2b-7d7ca7369f3f"
+ "8c9fd263-693b-4664-af8b-60267784782a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223129Z:db1376d5-82e9-4c02-9c2b-7d7ca7369f3f"
+ "NORTHCENTRALUS:20200519T191143Z:8c9fd263-693b-4664-af8b-60267784782a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,7 +507,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:29 GMT"
+ "Tue, 19 May 2020 19:11:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -526,13 +526,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01b33ad2-186a-495d-8688-0d1208a2c93c"
+ "6a98cc67-9177-4336-862e-75f203f8ee22"
],
"Accept-Language": [
"en-US"
@@ -555,13 +555,13 @@
"11993"
],
"x-ms-request-id": [
- "31231232-aa5c-434e-ae93-1219a5ff174a"
+ "310b4fe7-a26d-4190-95a4-bb652bb91938"
],
"x-ms-correlation-request-id": [
- "31231232-aa5c-434e-ae93-1219a5ff174a"
+ "310b4fe7-a26d-4190-95a4-bb652bb91938"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223129Z:31231232-aa5c-434e-ae93-1219a5ff174a"
+ "NORTHCENTRALUS:20200519T191144Z:310b4fe7-a26d-4190-95a4-bb652bb91938"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +570,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:29 GMT"
+ "Tue, 19 May 2020 19:11:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -589,13 +589,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8faf0203-42dd-4427-a7be-aebea285f3b3"
+ "25aa9cd5-4114-40a7-b989-ab882089b8e0"
],
"Accept-Language": [
"en-US"
@@ -618,13 +618,13 @@
"11991"
],
"x-ms-request-id": [
- "ead87428-b458-4dfd-a19d-55f1c1672061"
+ "42b5a289-294f-4074-82c5-d6dd54129be3"
],
"x-ms-correlation-request-id": [
- "ead87428-b458-4dfd-a19d-55f1c1672061"
+ "42b5a289-294f-4074-82c5-d6dd54129be3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223130Z:ead87428-b458-4dfd-a19d-55f1c1672061"
+ "NORTHCENTRALUS:20200519T191144Z:42b5a289-294f-4074-82c5-d6dd54129be3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,7 +633,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:29 GMT"
+ "Tue, 19 May 2020 19:11:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -652,13 +652,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2340ee61-ebcf-4cf9-9270-801511e90a18"
+ "a75a746d-ebc8-42f2-8b70-c41f50954fdb"
],
"Accept-Language": [
"en-US"
@@ -681,13 +681,13 @@
"11989"
],
"x-ms-request-id": [
- "162dbf4c-57a8-41e9-b1ed-84d4221636ae"
+ "c10c300b-7cd5-4855-ab02-4a0f02ea7f7a"
],
"x-ms-correlation-request-id": [
- "162dbf4c-57a8-41e9-b1ed-84d4221636ae"
+ "c10c300b-7cd5-4855-ab02-4a0f02ea7f7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223130Z:162dbf4c-57a8-41e9-b1ed-84d4221636ae"
+ "NORTHCENTRALUS:20200519T191145Z:c10c300b-7cd5-4855-ab02-4a0f02ea7f7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -696,7 +696,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:30 GMT"
+ "Tue, 19 May 2020 19:11:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -715,13 +715,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc08e2b3-ca24-4395-8841-c3dc96bfd063"
+ "10dd9d8f-06de-4fcc-8946-477436f8be2b"
],
"Accept-Language": [
"en-US"
@@ -744,13 +744,13 @@
"11987"
],
"x-ms-request-id": [
- "fb9054dc-9c30-4f72-88be-c85b5331af5d"
+ "79bb528b-8718-400e-9137-7acdbbfae95e"
],
"x-ms-correlation-request-id": [
- "fb9054dc-9c30-4f72-88be-c85b5331af5d"
+ "79bb528b-8718-400e-9137-7acdbbfae95e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223130Z:fb9054dc-9c30-4f72-88be-c85b5331af5d"
+ "NORTHCENTRALUS:20200519T191145Z:79bb528b-8718-400e-9137-7acdbbfae95e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -759,7 +759,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:30 GMT"
+ "Tue, 19 May 2020 19:11:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -778,13 +778,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3165f032-18f3-4cd5-bd34-eb9cf12b9ffe"
+ "e9d59366-3aa4-4998-9fde-eab24cfada47"
],
"Accept-Language": [
"en-US"
@@ -807,13 +807,13 @@
"11985"
],
"x-ms-request-id": [
- "e1e1f7e0-0647-4887-9480-4dda9ef1aa7e"
+ "f8ed9383-73b8-49a7-ad1d-a7bc765f96ec"
],
"x-ms-correlation-request-id": [
- "e1e1f7e0-0647-4887-9480-4dda9ef1aa7e"
+ "f8ed9383-73b8-49a7-ad1d-a7bc765f96ec"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223131Z:e1e1f7e0-0647-4887-9480-4dda9ef1aa7e"
+ "NORTHCENTRALUS:20200519T191145Z:f8ed9383-73b8-49a7-ad1d-a7bc765f96ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -822,7 +822,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:30 GMT"
+ "Tue, 19 May 2020 19:11:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -841,13 +841,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4313e022-642e-488e-af11-4f0c22840958"
+ "2bd4c1df-ca01-49c3-af0f-fa6236682700"
],
"Accept-Language": [
"en-US"
@@ -870,13 +870,13 @@
"11983"
],
"x-ms-request-id": [
- "f3a83cd5-8855-4a0a-a4f6-e83f6b2c6f6e"
+ "74dbc244-abe4-4794-941b-a881e5a45fe1"
],
"x-ms-correlation-request-id": [
- "f3a83cd5-8855-4a0a-a4f6-e83f6b2c6f6e"
+ "74dbc244-abe4-4794-941b-a881e5a45fe1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223131Z:f3a83cd5-8855-4a0a-a4f6-e83f6b2c6f6e"
+ "NORTHCENTRALUS:20200519T191146Z:74dbc244-abe4-4794-941b-a881e5a45fe1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -885,7 +885,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:31 GMT"
+ "Tue, 19 May 2020 19:11:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -904,13 +904,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad78ed35-577e-4170-837b-221d069e8c8e"
+ "df7401a2-2c8b-4c18-88eb-428a8776eee9"
],
"Accept-Language": [
"en-US"
@@ -933,13 +933,13 @@
"11981"
],
"x-ms-request-id": [
- "0ec9dbe7-9e74-4828-bbce-ae1731ef4678"
+ "e8268b54-cc39-4880-a670-9c64635a19f5"
],
"x-ms-correlation-request-id": [
- "0ec9dbe7-9e74-4828-bbce-ae1731ef4678"
+ "e8268b54-cc39-4880-a670-9c64635a19f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223131Z:0ec9dbe7-9e74-4828-bbce-ae1731ef4678"
+ "NORTHCENTRALUS:20200519T191146Z:e8268b54-cc39-4880-a670-9c64635a19f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -948,7 +948,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:31 GMT"
+ "Tue, 19 May 2020 19:11:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -967,13 +967,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75c9ac83-b412-4888-a430-1d96a6c7bb65"
+ "cb0b4328-f17b-43fb-a4b2-80fe00dbc5b9"
],
"Accept-Language": [
"en-US"
@@ -996,13 +996,13 @@
"11979"
],
"x-ms-request-id": [
- "1867a691-c57d-4895-a2eb-74df626dbd47"
+ "643da264-d749-41b3-af49-429d660822e4"
],
"x-ms-correlation-request-id": [
- "1867a691-c57d-4895-a2eb-74df626dbd47"
+ "643da264-d749-41b3-af49-429d660822e4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223132Z:1867a691-c57d-4895-a2eb-74df626dbd47"
+ "NORTHCENTRALUS:20200519T191146Z:643da264-d749-41b3-af49-429d660822e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1011,7 +1011,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:32 GMT"
+ "Tue, 19 May 2020 19:11:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1030,13 +1030,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f17cbdd-006c-419c-bc73-9f0130294ad0"
+ "f3854fc3-8f05-4d4f-8073-35072556d230"
],
"Accept-Language": [
"en-US"
@@ -1059,13 +1059,13 @@
"11977"
],
"x-ms-request-id": [
- "0a36f863-3e9c-4fe6-a0e4-bdbe18148b96"
+ "f52a7f3d-4f5f-4e23-b592-75bb20f39f34"
],
"x-ms-correlation-request-id": [
- "0a36f863-3e9c-4fe6-a0e4-bdbe18148b96"
+ "f52a7f3d-4f5f-4e23-b592-75bb20f39f34"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223132Z:0a36f863-3e9c-4fe6-a0e4-bdbe18148b96"
+ "NORTHCENTRALUS:20200519T191147Z:f52a7f3d-4f5f-4e23-b592-75bb20f39f34"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1074,7 +1074,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:32 GMT"
+ "Tue, 19 May 2020 19:11:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1093,13 +1093,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f88d7251-4737-4dac-978c-cb3dd23c5d4b"
+ "36eb7a39-b705-4587-a33b-0bd3e5e8cf85"
],
"Accept-Language": [
"en-US"
@@ -1122,13 +1122,13 @@
"11975"
],
"x-ms-request-id": [
- "532e7d7a-c90e-41cd-80b3-1005628232ee"
+ "b79f135d-b511-4580-844d-0a20da203f21"
],
"x-ms-correlation-request-id": [
- "532e7d7a-c90e-41cd-80b3-1005628232ee"
+ "b79f135d-b511-4580-844d-0a20da203f21"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223133Z:532e7d7a-c90e-41cd-80b3-1005628232ee"
+ "NORTHCENTRALUS:20200519T191147Z:b79f135d-b511-4580-844d-0a20da203f21"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1137,7 +1137,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:32 GMT"
+ "Tue, 19 May 2020 19:11:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1146,23 +1146,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64e4d2bd-9c55-4de0-a095-677f86496877"
+ "b339a102-7efc-47ef-acb4-35ba124ef8d5"
],
"Accept-Language": [
"en-US"
@@ -1185,13 +1185,13 @@
"11973"
],
"x-ms-request-id": [
- "6e76516e-2f70-4f22-adec-dc7d3a92d9c0"
+ "999e26d1-c456-474a-9d26-8f416c042c8c"
],
"x-ms-correlation-request-id": [
- "6e76516e-2f70-4f22-adec-dc7d3a92d9c0"
+ "999e26d1-c456-474a-9d26-8f416c042c8c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223133Z:6e76516e-2f70-4f22-adec-dc7d3a92d9c0"
+ "NORTHCENTRALUS:20200519T191148Z:999e26d1-c456-474a-9d26-8f416c042c8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1200,7 +1200,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:33 GMT"
+ "Tue, 19 May 2020 19:11:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1209,23 +1209,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ec3cee6-e49e-49c2-8fee-fabf847b1ac8"
+ "5f7c4f26-6565-45c9-b080-d545375ad66f"
],
"Accept-Language": [
"en-US"
@@ -1248,13 +1248,13 @@
"11971"
],
"x-ms-request-id": [
- "1b531111-000e-46aa-b0c6-2ed62d423e0a"
+ "47247c81-d46c-424d-8510-5bba4092e164"
],
"x-ms-correlation-request-id": [
- "1b531111-000e-46aa-b0c6-2ed62d423e0a"
+ "47247c81-d46c-424d-8510-5bba4092e164"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223133Z:1b531111-000e-46aa-b0c6-2ed62d423e0a"
+ "NORTHCENTRALUS:20200519T191148Z:47247c81-d46c-424d-8510-5bba4092e164"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1263,7 +1263,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:33 GMT"
+ "Tue, 19 May 2020 19:11:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1272,23 +1272,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "89275eff-38d9-425e-86aa-95ee251c91f9"
+ "a61f7c90-48fb-4fd8-8973-b0c6625ad59d"
],
"Accept-Language": [
"en-US"
@@ -1311,13 +1311,13 @@
"11969"
],
"x-ms-request-id": [
- "0256190a-9f5d-4062-b82c-26ce665ec860"
+ "4930cee6-ab47-415e-84d5-217d06239df6"
],
"x-ms-correlation-request-id": [
- "0256190a-9f5d-4062-b82c-26ce665ec860"
+ "4930cee6-ab47-415e-84d5-217d06239df6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223134Z:0256190a-9f5d-4062-b82c-26ce665ec860"
+ "NORTHCENTRALUS:20200519T191148Z:4930cee6-ab47-415e-84d5-217d06239df6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1326,7 +1326,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:34 GMT"
+ "Tue, 19 May 2020 19:11:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1335,23 +1335,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3739251-b1c2-4fe2-8273-4c2dcbcdfc86"
+ "f0e18628-8de4-4ef5-af34-46b95ea44f99"
],
"Accept-Language": [
"en-US"
@@ -1374,13 +1374,13 @@
"11967"
],
"x-ms-request-id": [
- "9c9ee5ff-dc2f-4fbe-9a10-04d4dec636b2"
+ "491c7258-649e-4d4f-8179-af33ac60e8e9"
],
"x-ms-correlation-request-id": [
- "9c9ee5ff-dc2f-4fbe-9a10-04d4dec636b2"
+ "491c7258-649e-4d4f-8179-af33ac60e8e9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223134Z:9c9ee5ff-dc2f-4fbe-9a10-04d4dec636b2"
+ "NORTHCENTRALUS:20200519T191149Z:491c7258-649e-4d4f-8179-af33ac60e8e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1389,7 +1389,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:34 GMT"
+ "Tue, 19 May 2020 19:11:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1398,23 +1398,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b23595bb-4ce1-4cf7-94d5-328f6eb570fe"
+ "c0e22b82-7cba-4b41-82b2-1a0d1d68e5b0"
],
"Accept-Language": [
"en-US"
@@ -1437,13 +1437,13 @@
"11965"
],
"x-ms-request-id": [
- "3e72bf1a-12c9-4bd1-bc6a-54d96af77f08"
+ "f7c93766-ee9c-4c1f-9570-65297a987ae7"
],
"x-ms-correlation-request-id": [
- "3e72bf1a-12c9-4bd1-bc6a-54d96af77f08"
+ "f7c93766-ee9c-4c1f-9570-65297a987ae7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223135Z:3e72bf1a-12c9-4bd1-bc6a-54d96af77f08"
+ "NORTHCENTRALUS:20200519T191149Z:f7c93766-ee9c-4c1f-9570-65297a987ae7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1452,7 +1452,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:34 GMT"
+ "Tue, 19 May 2020 19:11:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1461,23 +1461,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "28cc3076-0d11-4773-9e55-c4549678c561"
+ "bde26317-bb05-4904-8986-7ac606c1d6d4"
],
"Accept-Language": [
"en-US"
@@ -1500,13 +1500,13 @@
"11963"
],
"x-ms-request-id": [
- "74f11955-b95b-4baa-a6ea-f724bb971549"
+ "84a5bf73-e423-40a5-84e7-348931db2b25"
],
"x-ms-correlation-request-id": [
- "74f11955-b95b-4baa-a6ea-f724bb971549"
+ "84a5bf73-e423-40a5-84e7-348931db2b25"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223135Z:74f11955-b95b-4baa-a6ea-f724bb971549"
+ "NORTHCENTRALUS:20200519T191149Z:84a5bf73-e423-40a5-84e7-348931db2b25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1515,7 +1515,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:35 GMT"
+ "Tue, 19 May 2020 19:11:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1524,23 +1524,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39d37c0f-348f-4ded-b9a0-9175f9f4fac1"
+ "a16aa349-5a39-45cf-a63d-19cb6a77233f"
],
"Accept-Language": [
"en-US"
@@ -1563,13 +1563,13 @@
"11961"
],
"x-ms-request-id": [
- "e83da6f4-76eb-4e03-ba3b-6707dd7e98e6"
+ "239cc921-7780-4a4b-99c0-842fbac91730"
],
"x-ms-correlation-request-id": [
- "e83da6f4-76eb-4e03-ba3b-6707dd7e98e6"
+ "239cc921-7780-4a4b-99c0-842fbac91730"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223136Z:e83da6f4-76eb-4e03-ba3b-6707dd7e98e6"
+ "NORTHCENTRALUS:20200519T191150Z:239cc921-7780-4a4b-99c0-842fbac91730"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1578,7 +1578,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:35 GMT"
+ "Tue, 19 May 2020 19:11:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1587,23 +1587,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50d2ac4d-d938-4fd6-a6a0-335c70c267c0"
+ "ba732233-44a4-4d10-a57d-725aa65ba138"
],
"Accept-Language": [
"en-US"
@@ -1626,13 +1626,13 @@
"11959"
],
"x-ms-request-id": [
- "3749146e-ed19-416e-971a-8733f025ec89"
+ "57a2f326-ed24-4da4-9794-7de838c66d05"
],
"x-ms-correlation-request-id": [
- "3749146e-ed19-416e-971a-8733f025ec89"
+ "57a2f326-ed24-4da4-9794-7de838c66d05"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223136Z:3749146e-ed19-416e-971a-8733f025ec89"
+ "NORTHCENTRALUS:20200519T191150Z:57a2f326-ed24-4da4-9794-7de838c66d05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1641,7 +1641,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:36 GMT"
+ "Tue, 19 May 2020 19:11:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1650,23 +1650,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8697661Z\",\r\n \"duration\": \"PT3.8136435S\",\r\n \"trackingId\": \"166a3e76-4fa3-403d-a1dc-be15202866ba\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56120f00-80dd-45b3-abec-44643ab3bc1e"
+ "54b96996-b0a7-475f-ab8f-e5f1a9f7f935"
],
"Accept-Language": [
"en-US"
@@ -1689,13 +1689,13 @@
"11957"
],
"x-ms-request-id": [
- "ba746907-7532-4bc7-aae0-54f826931b5a"
+ "531b2cd9-a027-4dfe-bdd3-505c437946a1"
],
"x-ms-correlation-request-id": [
- "ba746907-7532-4bc7-aae0-54f826931b5a"
+ "531b2cd9-a027-4dfe-bdd3-505c437946a1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223136Z:ba746907-7532-4bc7-aae0-54f826931b5a"
+ "NORTHCENTRALUS:20200519T191151Z:531b2cd9-a027-4dfe-bdd3-505c437946a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1704,7 +1704,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:36 GMT"
+ "Tue, 19 May 2020 19:11:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1713,23 +1713,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a5dbefa-ac74-4681-b641-8e869350013a"
+ "9ab11d31-439d-4473-9252-5d949b01a1ec"
],
"Accept-Language": [
"en-US"
@@ -1752,13 +1752,13 @@
"11955"
],
"x-ms-request-id": [
- "251af647-348c-4b71-94f2-524ad26f000c"
+ "19dbd666-18e4-4b29-91a4-b0ccb2e8f8ca"
],
"x-ms-correlation-request-id": [
- "251af647-348c-4b71-94f2-524ad26f000c"
+ "19dbd666-18e4-4b29-91a4-b0ccb2e8f8ca"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223137Z:251af647-348c-4b71-94f2-524ad26f000c"
+ "NORTHCENTRALUS:20200519T191151Z:19dbd666-18e4-4b29-91a4-b0ccb2e8f8ca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1767,7 +1767,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:36 GMT"
+ "Tue, 19 May 2020 19:11:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1776,23 +1776,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29ba3401-952d-4498-8ad8-dc05f79f7fa8"
+ "0b754858-7a5b-4bbe-983c-f39476d9aee1"
],
"Accept-Language": [
"en-US"
@@ -1815,13 +1815,13 @@
"11953"
],
"x-ms-request-id": [
- "09c3e3b2-6eb2-4b21-adc9-3423a5a4ff73"
+ "3a4dc076-7bb9-4c74-86e1-4fff32e80540"
],
"x-ms-correlation-request-id": [
- "09c3e3b2-6eb2-4b21-adc9-3423a5a4ff73"
+ "3a4dc076-7bb9-4c74-86e1-4fff32e80540"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223137Z:09c3e3b2-6eb2-4b21-adc9-3423a5a4ff73"
+ "NORTHCENTRALUS:20200519T191151Z:3a4dc076-7bb9-4c74-86e1-4fff32e80540"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:37 GMT"
+ "Tue, 19 May 2020 19:11:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1839,23 +1839,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63a2e6f4-f6a0-4a0e-b3b1-c2b6078246c6"
+ "afc01217-a706-44fc-95c8-bfceafb31a7a"
],
"Accept-Language": [
"en-US"
@@ -1878,13 +1878,13 @@
"11951"
],
"x-ms-request-id": [
- "a8de7e69-6af6-4411-bbf4-0431344c0d69"
+ "1db38cd7-9a7c-42f0-a288-3806e2827c63"
],
"x-ms-correlation-request-id": [
- "a8de7e69-6af6-4411-bbf4-0431344c0d69"
+ "1db38cd7-9a7c-42f0-a288-3806e2827c63"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223138Z:a8de7e69-6af6-4411-bbf4-0431344c0d69"
+ "NORTHCENTRALUS:20200519T191152Z:1db38cd7-9a7c-42f0-a288-3806e2827c63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1893,7 +1893,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:37 GMT"
+ "Tue, 19 May 2020 19:11:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1902,23 +1902,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b72122e6-7e37-471b-9d54-a04001c3c5df"
+ "20172eb9-17cd-4da0-84ce-d807d42568c0"
],
"Accept-Language": [
"en-US"
@@ -1941,13 +1941,13 @@
"11949"
],
"x-ms-request-id": [
- "bf7132db-9b28-4840-a4bb-459523ec96a6"
+ "1df32088-3377-43be-b501-77614b2438ca"
],
"x-ms-correlation-request-id": [
- "bf7132db-9b28-4840-a4bb-459523ec96a6"
+ "1df32088-3377-43be-b501-77614b2438ca"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223138Z:bf7132db-9b28-4840-a4bb-459523ec96a6"
+ "NORTHCENTRALUS:20200519T191152Z:1df32088-3377-43be-b501-77614b2438ca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1956,7 +1956,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:38 GMT"
+ "Tue, 19 May 2020 19:11:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1965,23 +1965,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fc7e742-5a08-49fd-9754-aa0101336c17"
+ "91ac0c0b-a84b-46ff-aded-97130d39350e"
],
"Accept-Language": [
"en-US"
@@ -2004,13 +2004,13 @@
"11947"
],
"x-ms-request-id": [
- "eb9828e5-4938-445a-93bc-d513c063d602"
+ "c3b220f8-a80e-4d62-bc81-48b054e1a12f"
],
"x-ms-correlation-request-id": [
- "eb9828e5-4938-445a-93bc-d513c063d602"
+ "c3b220f8-a80e-4d62-bc81-48b054e1a12f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223139Z:eb9828e5-4938-445a-93bc-d513c063d602"
+ "NORTHCENTRALUS:20200519T191153Z:c3b220f8-a80e-4d62-bc81-48b054e1a12f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2019,7 +2019,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:38 GMT"
+ "Tue, 19 May 2020 19:11:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2028,23 +2028,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b45097c-bcc3-4121-bfe6-34afbd1fd0ba"
+ "c3de708d-da5c-452b-a097-179f88ac43d5"
],
"Accept-Language": [
"en-US"
@@ -2067,13 +2067,13 @@
"11945"
],
"x-ms-request-id": [
- "a229ddc8-73c2-4312-8ea9-5ddeb06a22df"
+ "c1fd2d62-9061-4420-ad80-76bcbdaf96e8"
],
"x-ms-correlation-request-id": [
- "a229ddc8-73c2-4312-8ea9-5ddeb06a22df"
+ "c1fd2d62-9061-4420-ad80-76bcbdaf96e8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223139Z:a229ddc8-73c2-4312-8ea9-5ddeb06a22df"
+ "NORTHCENTRALUS:20200519T191153Z:c1fd2d62-9061-4420-ad80-76bcbdaf96e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2082,7 +2082,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:39 GMT"
+ "Tue, 19 May 2020 19:11:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2091,23 +2091,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87a1b594-e9a9-4f6e-b053-18c4de8422da"
+ "baa0b41f-0155-4579-a0d7-3de2be51f900"
],
"Accept-Language": [
"en-US"
@@ -2130,13 +2130,13 @@
"11943"
],
"x-ms-request-id": [
- "492f612d-7d09-4915-ace1-79195bcf294c"
+ "95a92f88-b87a-4dd9-9de7-7eb5485694eb"
],
"x-ms-correlation-request-id": [
- "492f612d-7d09-4915-ace1-79195bcf294c"
+ "95a92f88-b87a-4dd9-9de7-7eb5485694eb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223139Z:492f612d-7d09-4915-ace1-79195bcf294c"
+ "NORTHCENTRALUS:20200519T191153Z:95a92f88-b87a-4dd9-9de7-7eb5485694eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2145,7 +2145,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:39 GMT"
+ "Tue, 19 May 2020 19:11:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2154,23 +2154,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21c4cf94-d01d-49cf-93f5-04fd41011d78"
+ "25787359-ad6d-4034-8583-7651af90547e"
],
"Accept-Language": [
"en-US"
@@ -2193,13 +2193,13 @@
"11941"
],
"x-ms-request-id": [
- "8e2add8c-59b8-44f8-957f-0146a8f84164"
+ "8b77076a-d97f-41b8-9a83-064756f2cc20"
],
"x-ms-correlation-request-id": [
- "8e2add8c-59b8-44f8-957f-0146a8f84164"
+ "8b77076a-d97f-41b8-9a83-064756f2cc20"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223140Z:8e2add8c-59b8-44f8-957f-0146a8f84164"
+ "NORTHCENTRALUS:20200519T191154Z:8b77076a-d97f-41b8-9a83-064756f2cc20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2208,7 +2208,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:39 GMT"
+ "Tue, 19 May 2020 19:11:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2217,23 +2217,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0be60fbe-2254-4020-bb92-e3dcc7dc65e5"
+ "7d97c00f-f8f0-408d-96ce-6cee7af98e37"
],
"Accept-Language": [
"en-US"
@@ -2256,13 +2256,13 @@
"11939"
],
"x-ms-request-id": [
- "d129c76f-1411-40c8-ba4f-b07adc880278"
+ "4ff963f3-b8ed-4b24-9416-b4c4e0b41cff"
],
"x-ms-correlation-request-id": [
- "d129c76f-1411-40c8-ba4f-b07adc880278"
+ "4ff963f3-b8ed-4b24-9416-b4c4e0b41cff"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223140Z:d129c76f-1411-40c8-ba4f-b07adc880278"
+ "NORTHCENTRALUS:20200519T191154Z:4ff963f3-b8ed-4b24-9416-b4c4e0b41cff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2271,7 +2271,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:40 GMT"
+ "Tue, 19 May 2020 19:11:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2280,23 +2280,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.7411066Z\",\r\n \"duration\": \"PT7.684984S\",\r\n \"trackingId\": \"0d1f206b-68cd-4bb7-919e-da6dfa2ee8f0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2dcf24d2-156f-4da8-bc9a-1e10410139cc"
+ "a49eb6a6-9e3c-420a-9ed8-16dbc146a7b5"
],
"Accept-Language": [
"en-US"
@@ -2319,13 +2319,13 @@
"11937"
],
"x-ms-request-id": [
- "316b59a2-266b-44eb-92e5-e920ddf3d9e4"
+ "0df966d6-b0ad-487f-8c13-3ad628f78357"
],
"x-ms-correlation-request-id": [
- "316b59a2-266b-44eb-92e5-e920ddf3d9e4"
+ "0df966d6-b0ad-487f-8c13-3ad628f78357"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223141Z:316b59a2-266b-44eb-92e5-e920ddf3d9e4"
+ "NORTHCENTRALUS:20200519T191154Z:0df966d6-b0ad-487f-8c13-3ad628f78357"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2334,7 +2334,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:40 GMT"
+ "Tue, 19 May 2020 19:11:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2343,23 +2343,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37050758-fe38-4c34-9221-c8c9fd381cc5"
+ "796996eb-56e6-4aff-8ea9-338d0d5301ba"
],
"Accept-Language": [
"en-US"
@@ -2382,13 +2382,13 @@
"11935"
],
"x-ms-request-id": [
- "ca15a067-53b2-42c9-9075-329e6e7a1d47"
+ "d78a8c33-f9e3-45f7-92d6-07c478da665a"
],
"x-ms-correlation-request-id": [
- "ca15a067-53b2-42c9-9075-329e6e7a1d47"
+ "d78a8c33-f9e3-45f7-92d6-07c478da665a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223141Z:ca15a067-53b2-42c9-9075-329e6e7a1d47"
+ "NORTHCENTRALUS:20200519T191155Z:d78a8c33-f9e3-45f7-92d6-07c478da665a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2397,7 +2397,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:41 GMT"
+ "Tue, 19 May 2020 19:11:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2406,23 +2406,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37d5ef4a-6dda-4deb-a59c-6449f85fe2b0"
+ "9ff471d9-ea0c-420a-aa4b-e2f89d8174b3"
],
"Accept-Language": [
"en-US"
@@ -2445,13 +2445,13 @@
"11933"
],
"x-ms-request-id": [
- "a1960854-2da2-4768-a5ad-7a97a085bf20"
+ "36001fb8-fd8a-4523-a304-f71ca49bcbda"
],
"x-ms-correlation-request-id": [
- "a1960854-2da2-4768-a5ad-7a97a085bf20"
+ "36001fb8-fd8a-4523-a304-f71ca49bcbda"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223141Z:a1960854-2da2-4768-a5ad-7a97a085bf20"
+ "NORTHCENTRALUS:20200519T191155Z:36001fb8-fd8a-4523-a304-f71ca49bcbda"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2460,7 +2460,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:41 GMT"
+ "Tue, 19 May 2020 19:11:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2469,23 +2469,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "905970fd-f9fa-4c20-8ec9-8dea4f376e64"
+ "b797ccfb-0a1c-4e2d-84fc-2cd88b6c27eb"
],
"Accept-Language": [
"en-US"
@@ -2508,13 +2508,13 @@
"11931"
],
"x-ms-request-id": [
- "849d9f91-006e-4e5b-8c85-4f84b6285973"
+ "ee6c70a9-98f3-4644-9159-7c73f76f4316"
],
"x-ms-correlation-request-id": [
- "849d9f91-006e-4e5b-8c85-4f84b6285973"
+ "ee6c70a9-98f3-4644-9159-7c73f76f4316"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223142Z:849d9f91-006e-4e5b-8c85-4f84b6285973"
+ "NORTHCENTRALUS:20200519T191156Z:ee6c70a9-98f3-4644-9159-7c73f76f4316"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2523,7 +2523,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:41 GMT"
+ "Tue, 19 May 2020 19:11:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2532,23 +2532,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ced87ac-aeb4-4cf2-9d49-09cab6ef2883"
+ "c68ef5e0-e1d1-4c6a-a984-9a1190445242"
],
"Accept-Language": [
"en-US"
@@ -2571,13 +2571,13 @@
"11929"
],
"x-ms-request-id": [
- "72cdb5f5-1e87-4a1f-af49-aa15af749805"
+ "3c933a56-680e-4627-ac7c-e52912af4299"
],
"x-ms-correlation-request-id": [
- "72cdb5f5-1e87-4a1f-af49-aa15af749805"
+ "3c933a56-680e-4627-ac7c-e52912af4299"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223142Z:72cdb5f5-1e87-4a1f-af49-aa15af749805"
+ "NORTHCENTRALUS:20200519T191156Z:3c933a56-680e-4627-ac7c-e52912af4299"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2586,7 +2586,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:42 GMT"
+ "Tue, 19 May 2020 19:11:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2595,23 +2595,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3375b2f1-ae4f-4641-a704-5beb046950c5"
+ "9e22eb09-c07d-4209-9b1d-f016fd9e3ff4"
],
"Accept-Language": [
"en-US"
@@ -2634,13 +2634,13 @@
"11927"
],
"x-ms-request-id": [
- "dae68f09-83af-43ef-96a7-37692f953f7a"
+ "a3bbde2b-f1e0-4af3-803c-cd58386c3a7a"
],
"x-ms-correlation-request-id": [
- "dae68f09-83af-43ef-96a7-37692f953f7a"
+ "a3bbde2b-f1e0-4af3-803c-cd58386c3a7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223143Z:dae68f09-83af-43ef-96a7-37692f953f7a"
+ "NORTHCENTRALUS:20200519T191156Z:a3bbde2b-f1e0-4af3-803c-cd58386c3a7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2649,7 +2649,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:42 GMT"
+ "Tue, 19 May 2020 19:11:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2658,23 +2658,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ead5ca0a-d937-4ec9-86b2-f5dfa018d309"
+ "3b601cef-3141-4bdb-ba22-65bea45c5635"
],
"Accept-Language": [
"en-US"
@@ -2697,13 +2697,13 @@
"11925"
],
"x-ms-request-id": [
- "673b323f-3ad4-4fc8-8c53-8172a9cc0a77"
+ "79bcc4d2-2b63-4965-b823-724777fc5ca4"
],
"x-ms-correlation-request-id": [
- "673b323f-3ad4-4fc8-8c53-8172a9cc0a77"
+ "79bcc4d2-2b63-4965-b823-724777fc5ca4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223143Z:673b323f-3ad4-4fc8-8c53-8172a9cc0a77"
+ "NORTHCENTRALUS:20200519T191157Z:79bcc4d2-2b63-4965-b823-724777fc5ca4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2712,7 +2712,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:43 GMT"
+ "Tue, 19 May 2020 19:11:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2721,23 +2721,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7aa514ca-88fc-4ed3-9f20-1bc2b2038738"
+ "78d32981-c247-45aa-8266-4f900ae99808"
],
"Accept-Language": [
"en-US"
@@ -2760,13 +2760,13 @@
"11923"
],
"x-ms-request-id": [
- "b7f46b9e-549a-4d6c-99a6-5fe51253929b"
+ "aee935a3-5f86-46c6-9e0d-8857aa695b4b"
],
"x-ms-correlation-request-id": [
- "b7f46b9e-549a-4d6c-99a6-5fe51253929b"
+ "aee935a3-5f86-46c6-9e0d-8857aa695b4b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223144Z:b7f46b9e-549a-4d6c-99a6-5fe51253929b"
+ "NORTHCENTRALUS:20200519T191157Z:aee935a3-5f86-46c6-9e0d-8857aa695b4b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2775,7 +2775,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:43 GMT"
+ "Tue, 19 May 2020 19:11:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2784,23 +2784,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "754189af-958c-45d0-b3de-a48a99a3362e"
+ "fc3eeeb4-9708-4535-a3f6-a7a5a847aa98"
],
"Accept-Language": [
"en-US"
@@ -2823,13 +2823,13 @@
"11921"
],
"x-ms-request-id": [
- "f2dce73f-9b0b-4dc4-9125-c9af07c15ae1"
+ "28ec7d44-8ccc-4553-ad2a-21fbe6cc39c7"
],
"x-ms-correlation-request-id": [
- "f2dce73f-9b0b-4dc4-9125-c9af07c15ae1"
+ "28ec7d44-8ccc-4553-ad2a-21fbe6cc39c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223144Z:f2dce73f-9b0b-4dc4-9125-c9af07c15ae1"
+ "NORTHCENTRALUS:20200519T191157Z:28ec7d44-8ccc-4553-ad2a-21fbe6cc39c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2838,7 +2838,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:44 GMT"
+ "Tue, 19 May 2020 19:11:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2847,23 +2847,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93b53d8d-ebcd-4a41-a6b5-582e49654541"
+ "4976cf88-5007-4eac-8c84-63c9f7f63094"
],
"Accept-Language": [
"en-US"
@@ -2886,13 +2886,13 @@
"11919"
],
"x-ms-request-id": [
- "ca580bc8-6868-42c9-8068-640fd3b0a28e"
+ "66cf4e2c-d128-4b81-ac56-55658daf47f2"
],
"x-ms-correlation-request-id": [
- "ca580bc8-6868-42c9-8068-640fd3b0a28e"
+ "66cf4e2c-d128-4b81-ac56-55658daf47f2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223144Z:ca580bc8-6868-42c9-8068-640fd3b0a28e"
+ "NORTHCENTRALUS:20200519T191158Z:66cf4e2c-d128-4b81-ac56-55658daf47f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2901,7 +2901,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:44 GMT"
+ "Tue, 19 May 2020 19:11:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2910,23 +2910,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14907757-a13f-4933-b793-4824f876680c"
+ "904dfb04-81f3-45af-9008-0a585fb350f5"
],
"Accept-Language": [
"en-US"
@@ -2949,13 +2949,13 @@
"11917"
],
"x-ms-request-id": [
- "ef5607dc-3711-4f2a-8002-a7eb71d9138e"
+ "1ac1da32-5811-4692-a03c-9e47ffd849e6"
],
"x-ms-correlation-request-id": [
- "ef5607dc-3711-4f2a-8002-a7eb71d9138e"
+ "1ac1da32-5811-4692-a03c-9e47ffd849e6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223145Z:ef5607dc-3711-4f2a-8002-a7eb71d9138e"
+ "NORTHCENTRALUS:20200519T191158Z:1ac1da32-5811-4692-a03c-9e47ffd849e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2964,7 +2964,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:44 GMT"
+ "Tue, 19 May 2020 19:11:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2973,23 +2973,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d62c2efe-3798-4856-ad8a-bd5375df389c"
+ "9e682587-bd68-41ee-afed-4fbae9156574"
],
"Accept-Language": [
"en-US"
@@ -3012,13 +3012,13 @@
"11915"
],
"x-ms-request-id": [
- "6f1254a0-9ae5-436d-a6af-c408e116e3ea"
+ "40a5b3d9-3fcb-4fc5-a46d-c8af016ee6f4"
],
"x-ms-correlation-request-id": [
- "6f1254a0-9ae5-436d-a6af-c408e116e3ea"
+ "40a5b3d9-3fcb-4fc5-a46d-c8af016ee6f4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223145Z:6f1254a0-9ae5-436d-a6af-c408e116e3ea"
+ "NORTHCENTRALUS:20200519T191159Z:40a5b3d9-3fcb-4fc5-a46d-c8af016ee6f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3027,7 +3027,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:45 GMT"
+ "Tue, 19 May 2020 19:11:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3036,23 +3036,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "430a8e65-0b1b-4379-b2ba-4b54366e89df"
+ "e68299d8-22d1-46ac-a6e4-b757f76374d3"
],
"Accept-Language": [
"en-US"
@@ -3075,13 +3075,13 @@
"11913"
],
"x-ms-request-id": [
- "32546a92-3d21-4e22-9587-89937d17aaca"
+ "8e967803-5083-4924-bda7-6718c7f1fe71"
],
"x-ms-correlation-request-id": [
- "32546a92-3d21-4e22-9587-89937d17aaca"
+ "8e967803-5083-4924-bda7-6718c7f1fe71"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223146Z:32546a92-3d21-4e22-9587-89937d17aaca"
+ "NORTHCENTRALUS:20200519T191159Z:8e967803-5083-4924-bda7-6718c7f1fe71"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3090,7 +3090,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:45 GMT"
+ "Tue, 19 May 2020 19:11:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3099,23 +3099,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.7161279Z\",\r\n \"duration\": \"PT11.6600053S\",\r\n \"trackingId\": \"6ef81dcc-72bb-4494-9b23-d2955f63453a\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbddbdd4-981c-46f1-858c-c7842496dd0d"
+ "a1425d82-2426-476d-bc5c-2adbb102fb9a"
],
"Accept-Language": [
"en-US"
@@ -3138,13 +3138,13 @@
"11911"
],
"x-ms-request-id": [
- "8f6bc282-dda2-4280-b591-4414f37566e4"
+ "612cf7d6-2379-49a9-affd-9c9af70554cf"
],
"x-ms-correlation-request-id": [
- "8f6bc282-dda2-4280-b591-4414f37566e4"
+ "612cf7d6-2379-49a9-affd-9c9af70554cf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223146Z:8f6bc282-dda2-4280-b591-4414f37566e4"
+ "NORTHCENTRALUS:20200519T191159Z:612cf7d6-2379-49a9-affd-9c9af70554cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3153,7 +3153,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:46 GMT"
+ "Tue, 19 May 2020 19:11:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3162,23 +3162,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f3b5e48-636a-483f-a163-e8992a18de31"
+ "030aa4f9-bd0b-4869-8f02-02dc278df93a"
],
"Accept-Language": [
"en-US"
@@ -3201,13 +3201,13 @@
"11909"
],
"x-ms-request-id": [
- "67d79c92-c65f-44d6-aeec-bf98a48c9e23"
+ "70728d7b-5049-48c7-a8ae-72f8f9b5dc52"
],
"x-ms-correlation-request-id": [
- "67d79c92-c65f-44d6-aeec-bf98a48c9e23"
+ "70728d7b-5049-48c7-a8ae-72f8f9b5dc52"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223147Z:67d79c92-c65f-44d6-aeec-bf98a48c9e23"
+ "NORTHCENTRALUS:20200519T191200Z:70728d7b-5049-48c7-a8ae-72f8f9b5dc52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3216,7 +3216,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:46 GMT"
+ "Tue, 19 May 2020 19:12:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3225,23 +3225,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6464e24d-9c4f-4379-b0a4-0e3b86b32723"
+ "508de053-29d8-4da4-aea0-847833b08ecb"
],
"Accept-Language": [
"en-US"
@@ -3264,13 +3264,13 @@
"11907"
],
"x-ms-request-id": [
- "b6f48ec5-b041-4085-bd59-255e801f71cc"
+ "7a0c242b-68a0-48a8-a664-d6ba6b47fad3"
],
"x-ms-correlation-request-id": [
- "b6f48ec5-b041-4085-bd59-255e801f71cc"
+ "7a0c242b-68a0-48a8-a664-d6ba6b47fad3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223147Z:b6f48ec5-b041-4085-bd59-255e801f71cc"
+ "NORTHCENTRALUS:20200519T191200Z:7a0c242b-68a0-48a8-a664-d6ba6b47fad3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3279,7 +3279,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:46 GMT"
+ "Tue, 19 May 2020 19:12:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3288,23 +3288,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34924826-c62b-414a-a6ae-cd39e8d9dbc0"
+ "47d235c0-082f-4ed3-953f-bd439fcf3123"
],
"Accept-Language": [
"en-US"
@@ -3327,13 +3327,13 @@
"11905"
],
"x-ms-request-id": [
- "b4a25b18-1eb5-4383-a3ad-97883139f494"
+ "7386adff-7321-4abb-af9a-3eecb0669ee2"
],
"x-ms-correlation-request-id": [
- "b4a25b18-1eb5-4383-a3ad-97883139f494"
+ "7386adff-7321-4abb-af9a-3eecb0669ee2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223147Z:b4a25b18-1eb5-4383-a3ad-97883139f494"
+ "NORTHCENTRALUS:20200519T191200Z:7386adff-7321-4abb-af9a-3eecb0669ee2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3342,7 +3342,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:47 GMT"
+ "Tue, 19 May 2020 19:12:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3351,23 +3351,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0937e714-a2a0-4453-ad07-86741fd937e5"
+ "d124a332-a191-4b67-9f88-169760f441ec"
],
"Accept-Language": [
"en-US"
@@ -3390,13 +3390,13 @@
"11903"
],
"x-ms-request-id": [
- "8487f785-3e79-456b-aaf6-98ba28270471"
+ "cf666cbf-b3a1-4160-beee-6e500f0d11fe"
],
"x-ms-correlation-request-id": [
- "8487f785-3e79-456b-aaf6-98ba28270471"
+ "cf666cbf-b3a1-4160-beee-6e500f0d11fe"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223148Z:8487f785-3e79-456b-aaf6-98ba28270471"
+ "NORTHCENTRALUS:20200519T191201Z:cf666cbf-b3a1-4160-beee-6e500f0d11fe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3405,7 +3405,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:47 GMT"
+ "Tue, 19 May 2020 19:12:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3414,23 +3414,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c7e9924c-8875-4447-8174-472fbcf81f2f"
+ "ec58f5c5-e989-402b-aa72-b6f13604acba"
],
"Accept-Language": [
"en-US"
@@ -3453,13 +3453,13 @@
"11901"
],
"x-ms-request-id": [
- "465fe115-ec20-4eb5-82cf-8eb8fd6a921e"
+ "a251f8f7-7032-4e86-a63f-8fd79d3ac405"
],
"x-ms-correlation-request-id": [
- "465fe115-ec20-4eb5-82cf-8eb8fd6a921e"
+ "a251f8f7-7032-4e86-a63f-8fd79d3ac405"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223148Z:465fe115-ec20-4eb5-82cf-8eb8fd6a921e"
+ "NORTHCENTRALUS:20200519T191201Z:a251f8f7-7032-4e86-a63f-8fd79d3ac405"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3468,7 +3468,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:48 GMT"
+ "Tue, 19 May 2020 19:12:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3477,23 +3477,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c4d0ac6-9934-4056-b977-cdcd880eab48"
+ "77e80189-c6ea-4b50-bf87-ec64b09f9d8e"
],
"Accept-Language": [
"en-US"
@@ -3516,13 +3516,13 @@
"11899"
],
"x-ms-request-id": [
- "0e6c9b16-cb3e-436e-a842-e3f1590a429c"
+ "fad1b22d-8de8-41ea-8fb2-aa562f7e3627"
],
"x-ms-correlation-request-id": [
- "0e6c9b16-cb3e-436e-a842-e3f1590a429c"
+ "fad1b22d-8de8-41ea-8fb2-aa562f7e3627"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223149Z:0e6c9b16-cb3e-436e-a842-e3f1590a429c"
+ "NORTHCENTRALUS:20200519T191202Z:fad1b22d-8de8-41ea-8fb2-aa562f7e3627"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3531,7 +3531,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:48 GMT"
+ "Tue, 19 May 2020 19:12:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3540,23 +3540,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1dc8a0b-9d2a-47ae-bf69-97fd52d6a67e"
+ "3359295e-c1c1-43e8-9c27-b56a4603700d"
],
"Accept-Language": [
"en-US"
@@ -3579,13 +3579,13 @@
"11897"
],
"x-ms-request-id": [
- "214cb6df-672a-40f8-bb17-36129a19838b"
+ "f580129c-f468-4c28-9d2b-1b6b52c276e7"
],
"x-ms-correlation-request-id": [
- "214cb6df-672a-40f8-bb17-36129a19838b"
+ "f580129c-f468-4c28-9d2b-1b6b52c276e7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223149Z:214cb6df-672a-40f8-bb17-36129a19838b"
+ "NORTHCENTRALUS:20200519T191202Z:f580129c-f468-4c28-9d2b-1b6b52c276e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3594,7 +3594,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:49 GMT"
+ "Tue, 19 May 2020 19:12:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3603,23 +3603,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e109655-012f-4839-806e-f59f06bfd5a3"
+ "b136ecbf-fe27-46ca-81ca-ab04e6469d77"
],
"Accept-Language": [
"en-US"
@@ -3642,13 +3642,13 @@
"11895"
],
"x-ms-request-id": [
- "5b1af88e-b458-4a70-82cb-f51518ef253e"
+ "4145f76a-db73-4f92-8818-563882273214"
],
"x-ms-correlation-request-id": [
- "5b1af88e-b458-4a70-82cb-f51518ef253e"
+ "4145f76a-db73-4f92-8818-563882273214"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223149Z:5b1af88e-b458-4a70-82cb-f51518ef253e"
+ "NORTHCENTRALUS:20200519T191202Z:4145f76a-db73-4f92-8818-563882273214"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3657,7 +3657,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:49 GMT"
+ "Tue, 19 May 2020 19:12:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3666,23 +3666,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "61c4e5ba-e053-4f5b-8ed4-d840698dbf06"
+ "3e3b63bb-37a8-49df-9df8-af5caea999fc"
],
"Accept-Language": [
"en-US"
@@ -3705,13 +3705,13 @@
"11893"
],
"x-ms-request-id": [
- "8eccc181-6763-4636-acbe-e2535a79e728"
+ "88a85874-56de-422a-9e4d-6321fd5979c6"
],
"x-ms-correlation-request-id": [
- "8eccc181-6763-4636-acbe-e2535a79e728"
+ "88a85874-56de-422a-9e4d-6321fd5979c6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223150Z:8eccc181-6763-4636-acbe-e2535a79e728"
+ "NORTHCENTRALUS:20200519T191203Z:88a85874-56de-422a-9e4d-6321fd5979c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3720,7 +3720,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:49 GMT"
+ "Tue, 19 May 2020 19:12:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3729,23 +3729,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ace6195-9ad6-4203-9d0f-c76587fd540d"
+ "8cb14068-410f-42ff-9ec7-7f9219e161b4"
],
"Accept-Language": [
"en-US"
@@ -3768,13 +3768,13 @@
"11891"
],
"x-ms-request-id": [
- "66655e68-5030-43d2-b1b5-68bd822a1757"
+ "b968b0d9-f674-4b9c-9789-4527993c618d"
],
"x-ms-correlation-request-id": [
- "66655e68-5030-43d2-b1b5-68bd822a1757"
+ "b968b0d9-f674-4b9c-9789-4527993c618d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223150Z:66655e68-5030-43d2-b1b5-68bd822a1757"
+ "NORTHCENTRALUS:20200519T191203Z:b968b0d9-f674-4b9c-9789-4527993c618d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3783,7 +3783,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:50 GMT"
+ "Tue, 19 May 2020 19:12:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3792,23 +3792,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d67a8c2d-0220-4fd9-b997-38ea2fa7590a"
+ "34b216cf-b3b3-4719-8309-3dd870ddd77a"
],
"Accept-Language": [
"en-US"
@@ -3831,13 +3831,13 @@
"11889"
],
"x-ms-request-id": [
- "ec75db9d-6b2a-4df5-bf15-91ea9a771119"
+ "d20ab753-3039-445d-a70a-12aa9f0a5b4a"
],
"x-ms-correlation-request-id": [
- "ec75db9d-6b2a-4df5-bf15-91ea9a771119"
+ "d20ab753-3039-445d-a70a-12aa9f0a5b4a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223151Z:ec75db9d-6b2a-4df5-bf15-91ea9a771119"
+ "NORTHCENTRALUS:20200519T191203Z:d20ab753-3039-445d-a70a-12aa9f0a5b4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3846,7 +3846,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:50 GMT"
+ "Tue, 19 May 2020 19:12:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3855,23 +3855,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72731d7f-908f-4288-88dc-ae565731e895"
+ "a53f141f-9d5c-4583-837f-b63bf21307c1"
],
"Accept-Language": [
"en-US"
@@ -3894,13 +3894,13 @@
"11887"
],
"x-ms-request-id": [
- "e573a1f7-1e8e-49ac-a588-9d27b679e3ce"
+ "c42ad186-1953-40cf-a95a-df957a641698"
],
"x-ms-correlation-request-id": [
- "e573a1f7-1e8e-49ac-a588-9d27b679e3ce"
+ "c42ad186-1953-40cf-a95a-df957a641698"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223151Z:e573a1f7-1e8e-49ac-a588-9d27b679e3ce"
+ "NORTHCENTRALUS:20200519T191204Z:c42ad186-1953-40cf-a95a-df957a641698"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3909,7 +3909,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:51 GMT"
+ "Tue, 19 May 2020 19:12:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3918,23 +3918,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2b89dfe-b667-4e2a-b8af-6a976a968f08"
+ "2d31a8a2-dff2-4a8e-ad85-be7961411e6c"
],
"Accept-Language": [
"en-US"
@@ -3957,13 +3957,13 @@
"11885"
],
"x-ms-request-id": [
- "2f5a8ab8-681e-4859-8d34-9b51f0a1d4fd"
+ "664e0233-1178-4462-b859-ebd62be5a8f4"
],
"x-ms-correlation-request-id": [
- "2f5a8ab8-681e-4859-8d34-9b51f0a1d4fd"
+ "664e0233-1178-4462-b859-ebd62be5a8f4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223152Z:2f5a8ab8-681e-4859-8d34-9b51f0a1d4fd"
+ "NORTHCENTRALUS:20200519T191204Z:664e0233-1178-4462-b859-ebd62be5a8f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3972,7 +3972,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:51 GMT"
+ "Tue, 19 May 2020 19:12:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3981,23 +3981,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.1566878Z\",\r\n \"duration\": \"PT17.1005652S\",\r\n \"trackingId\": \"6ae9f202-9fff-4d11-a514-a5503a867438\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "933efb50-3b06-4f46-a757-e1baa0818f4e"
+ "536b90a2-d4a9-4de7-b667-445214b2fa67"
],
"Accept-Language": [
"en-US"
@@ -4020,13 +4020,13 @@
"11883"
],
"x-ms-request-id": [
- "e3d28934-c429-4aff-8208-1f6621703209"
+ "968d7379-c305-4335-ad61-fddb56258b99"
],
"x-ms-correlation-request-id": [
- "e3d28934-c429-4aff-8208-1f6621703209"
+ "968d7379-c305-4335-ad61-fddb56258b99"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223152Z:e3d28934-c429-4aff-8208-1f6621703209"
+ "NORTHCENTRALUS:20200519T191204Z:968d7379-c305-4335-ad61-fddb56258b99"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4035,7 +4035,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:51 GMT"
+ "Tue, 19 May 2020 19:12:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4044,23 +4044,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c50f3dae-a4b3-48db-9dbf-0ada464ee466"
+ "31742caf-2f11-4e43-be1c-b3007c4fd387"
],
"Accept-Language": [
"en-US"
@@ -4083,13 +4083,13 @@
"11881"
],
"x-ms-request-id": [
- "1f43e7b2-b909-4a99-b453-1ed614abe804"
+ "45ba6331-4a68-40a2-b88e-c65fecdd02f0"
],
"x-ms-correlation-request-id": [
- "1f43e7b2-b909-4a99-b453-1ed614abe804"
+ "45ba6331-4a68-40a2-b88e-c65fecdd02f0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223152Z:1f43e7b2-b909-4a99-b453-1ed614abe804"
+ "NORTHCENTRALUS:20200519T191205Z:45ba6331-4a68-40a2-b88e-c65fecdd02f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4098,7 +4098,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:52 GMT"
+ "Tue, 19 May 2020 19:12:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4107,23 +4107,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecf73864-9487-4cc8-a3b4-137acf6b600c"
+ "2f90493a-af85-4a6c-a1f8-12f139b09e87"
],
"Accept-Language": [
"en-US"
@@ -4146,13 +4146,13 @@
"11879"
],
"x-ms-request-id": [
- "15700afb-989a-4e83-af6c-7b0343a2f8e7"
+ "1976be35-29f1-4056-a709-b2c6a3d3f8c4"
],
"x-ms-correlation-request-id": [
- "15700afb-989a-4e83-af6c-7b0343a2f8e7"
+ "1976be35-29f1-4056-a709-b2c6a3d3f8c4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223153Z:15700afb-989a-4e83-af6c-7b0343a2f8e7"
+ "NORTHCENTRALUS:20200519T191205Z:1976be35-29f1-4056-a709-b2c6a3d3f8c4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4161,7 +4161,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:52 GMT"
+ "Tue, 19 May 2020 19:12:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4170,23 +4170,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "992777aa-2197-43c9-b1f6-410e6183acce"
+ "0926628d-de08-409f-9b0c-86d4d420a2ad"
],
"Accept-Language": [
"en-US"
@@ -4209,13 +4209,13 @@
"11877"
],
"x-ms-request-id": [
- "bedaf6ad-4eab-42bd-a964-50c8bbca87cf"
+ "906761a0-0762-4581-966c-d2ed49a53237"
],
"x-ms-correlation-request-id": [
- "bedaf6ad-4eab-42bd-a964-50c8bbca87cf"
+ "906761a0-0762-4581-966c-d2ed49a53237"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223153Z:bedaf6ad-4eab-42bd-a964-50c8bbca87cf"
+ "NORTHCENTRALUS:20200519T191206Z:906761a0-0762-4581-966c-d2ed49a53237"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4224,7 +4224,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:53 GMT"
+ "Tue, 19 May 2020 19:12:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4233,23 +4233,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec2fa3f4-7c19-4178-a8dc-125775b3cb6b"
+ "a527158a-9019-441f-9fc1-938dc096a09d"
],
"Accept-Language": [
"en-US"
@@ -4272,13 +4272,13 @@
"11875"
],
"x-ms-request-id": [
- "43eb2ef6-ab70-4c4a-a4c6-3762543c7484"
+ "de3b189b-f0d2-477c-8cfd-cec95e632c31"
],
"x-ms-correlation-request-id": [
- "43eb2ef6-ab70-4c4a-a4c6-3762543c7484"
+ "de3b189b-f0d2-477c-8cfd-cec95e632c31"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223154Z:43eb2ef6-ab70-4c4a-a4c6-3762543c7484"
+ "NORTHCENTRALUS:20200519T191206Z:de3b189b-f0d2-477c-8cfd-cec95e632c31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4287,7 +4287,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:53 GMT"
+ "Tue, 19 May 2020 19:12:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4296,23 +4296,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50998e19-5a7c-407f-8562-e2075fa071c3"
+ "f6cc4666-d1bf-4250-b7a3-9337ae3fc4cc"
],
"Accept-Language": [
"en-US"
@@ -4335,13 +4335,13 @@
"11873"
],
"x-ms-request-id": [
- "25fef9c8-e886-454a-9a76-c321532e3460"
+ "08ac82e2-e6da-4eeb-b26c-57fea18eaa1f"
],
"x-ms-correlation-request-id": [
- "25fef9c8-e886-454a-9a76-c321532e3460"
+ "08ac82e2-e6da-4eeb-b26c-57fea18eaa1f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223154Z:25fef9c8-e886-454a-9a76-c321532e3460"
+ "NORTHCENTRALUS:20200519T191206Z:08ac82e2-e6da-4eeb-b26c-57fea18eaa1f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4350,7 +4350,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:54 GMT"
+ "Tue, 19 May 2020 19:12:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4359,23 +4359,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6551a429-63df-4f0a-b730-a6f6c58a2e8d"
+ "606428e2-6a82-46af-8b26-c582d0a838ce"
],
"Accept-Language": [
"en-US"
@@ -4398,13 +4398,13 @@
"11871"
],
"x-ms-request-id": [
- "f3dbd80d-b03a-4010-be4f-531491afcc3f"
+ "d77837ba-cc21-45bf-a726-deb2fcd2ba31"
],
"x-ms-correlation-request-id": [
- "f3dbd80d-b03a-4010-be4f-531491afcc3f"
+ "d77837ba-cc21-45bf-a726-deb2fcd2ba31"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223155Z:f3dbd80d-b03a-4010-be4f-531491afcc3f"
+ "NORTHCENTRALUS:20200519T191207Z:d77837ba-cc21-45bf-a726-deb2fcd2ba31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4413,7 +4413,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:54 GMT"
+ "Tue, 19 May 2020 19:12:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4422,23 +4422,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64c9d585-2b6f-4fb3-afe0-2efc526c942c"
+ "cc55ff01-6e86-404b-a15f-d402c07925f0"
],
"Accept-Language": [
"en-US"
@@ -4461,13 +4461,13 @@
"11869"
],
"x-ms-request-id": [
- "4b5f6bf7-4e2c-4979-936a-cdbd9a8e86ec"
+ "8652d7c6-4a27-468e-bdab-05de93972909"
],
"x-ms-correlation-request-id": [
- "4b5f6bf7-4e2c-4979-936a-cdbd9a8e86ec"
+ "8652d7c6-4a27-468e-bdab-05de93972909"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223155Z:4b5f6bf7-4e2c-4979-936a-cdbd9a8e86ec"
+ "NORTHCENTRALUS:20200519T191207Z:8652d7c6-4a27-468e-bdab-05de93972909"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4476,7 +4476,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:54 GMT"
+ "Tue, 19 May 2020 19:12:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4485,23 +4485,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "311fb2c0-89cb-45f1-a1e6-e6cbeb56220e"
+ "fb06e4cf-5a9a-40e7-af16-e5be4dc91793"
],
"Accept-Language": [
"en-US"
@@ -4524,13 +4524,13 @@
"11867"
],
"x-ms-request-id": [
- "95ac3a4e-a4e1-4bb1-a311-686115648924"
+ "740c2445-3770-49c6-9d80-4a7bf3a6af58"
],
"x-ms-correlation-request-id": [
- "95ac3a4e-a4e1-4bb1-a311-686115648924"
+ "740c2445-3770-49c6-9d80-4a7bf3a6af58"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223155Z:95ac3a4e-a4e1-4bb1-a311-686115648924"
+ "NORTHCENTRALUS:20200519T191207Z:740c2445-3770-49c6-9d80-4a7bf3a6af58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4539,7 +4539,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:55 GMT"
+ "Tue, 19 May 2020 19:12:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4548,23 +4548,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67a1ff21-11c8-4312-8ee9-48f1aadf3f03"
+ "8b1a4bf7-6785-4c5d-a09c-bf501fc7fd9a"
],
"Accept-Language": [
"en-US"
@@ -4587,13 +4587,13 @@
"11865"
],
"x-ms-request-id": [
- "9d12fcca-89f9-4266-a0da-9a9083994ab4"
+ "3cd76186-ea7f-4225-b9d5-6f626495f0e6"
],
"x-ms-correlation-request-id": [
- "9d12fcca-89f9-4266-a0da-9a9083994ab4"
+ "3cd76186-ea7f-4225-b9d5-6f626495f0e6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223156Z:9d12fcca-89f9-4266-a0da-9a9083994ab4"
+ "NORTHCENTRALUS:20200519T191208Z:3cd76186-ea7f-4225-b9d5-6f626495f0e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4602,7 +4602,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:55 GMT"
+ "Tue, 19 May 2020 19:12:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4611,23 +4611,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "890189c9-b2d0-40ee-999e-7fa5ff9b4ef3"
+ "7ddeee04-bb9e-461b-8134-5891341f4c9c"
],
"Accept-Language": [
"en-US"
@@ -4650,13 +4650,13 @@
"11863"
],
"x-ms-request-id": [
- "852c2f99-3b11-471a-963d-4850c60c24b8"
+ "319f2e77-98e9-4b75-8fd2-6d66c4bf45a3"
],
"x-ms-correlation-request-id": [
- "852c2f99-3b11-471a-963d-4850c60c24b8"
+ "319f2e77-98e9-4b75-8fd2-6d66c4bf45a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223156Z:852c2f99-3b11-471a-963d-4850c60c24b8"
+ "NORTHCENTRALUS:20200519T191208Z:319f2e77-98e9-4b75-8fd2-6d66c4bf45a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4665,7 +4665,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:56 GMT"
+ "Tue, 19 May 2020 19:12:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4674,23 +4674,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "875452e0-3cdd-4e75-bb43-3f87af07f619"
+ "423ae0e6-54a8-4069-9176-5855a86a643e"
],
"Accept-Language": [
"en-US"
@@ -4713,13 +4713,13 @@
"11861"
],
"x-ms-request-id": [
- "14915177-7387-4b60-83f3-b8625802af7f"
+ "3cc344e0-cff3-4065-8557-11e7194cc10e"
],
"x-ms-correlation-request-id": [
- "14915177-7387-4b60-83f3-b8625802af7f"
+ "3cc344e0-cff3-4065-8557-11e7194cc10e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223157Z:14915177-7387-4b60-83f3-b8625802af7f"
+ "NORTHCENTRALUS:20200519T191209Z:3cc344e0-cff3-4065-8557-11e7194cc10e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4728,7 +4728,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:56 GMT"
+ "Tue, 19 May 2020 19:12:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4737,23 +4737,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ff167b7-11d4-41ce-bf46-808070dfc94a"
+ "5dec6d48-31fc-47d5-b28e-3cdf4d89a633"
],
"Accept-Language": [
"en-US"
@@ -4776,13 +4776,13 @@
"11859"
],
"x-ms-request-id": [
- "4ab49053-a789-47ae-97b1-eed2023971d5"
+ "48b134d7-4427-40f0-9819-d5bfdd40adad"
],
"x-ms-correlation-request-id": [
- "4ab49053-a789-47ae-97b1-eed2023971d5"
+ "48b134d7-4427-40f0-9819-d5bfdd40adad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223157Z:4ab49053-a789-47ae-97b1-eed2023971d5"
+ "NORTHCENTRALUS:20200519T191209Z:48b134d7-4427-40f0-9819-d5bfdd40adad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4791,7 +4791,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:56 GMT"
+ "Tue, 19 May 2020 19:12:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4800,23 +4800,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac32b9c2-ce86-48e7-bed7-1fa4cd726579"
+ "75c7a0a1-ac31-4bc4-9c69-d228e2446ffc"
],
"Accept-Language": [
"en-US"
@@ -4839,13 +4839,13 @@
"11857"
],
"x-ms-request-id": [
- "842dde12-856d-4146-ac25-2e2f385ce80d"
+ "699188e2-dbc6-4d29-bc33-f9974bc46a6f"
],
"x-ms-correlation-request-id": [
- "842dde12-856d-4146-ac25-2e2f385ce80d"
+ "699188e2-dbc6-4d29-bc33-f9974bc46a6f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223157Z:842dde12-856d-4146-ac25-2e2f385ce80d"
+ "NORTHCENTRALUS:20200519T191210Z:699188e2-dbc6-4d29-bc33-f9974bc46a6f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4854,7 +4854,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:57 GMT"
+ "Tue, 19 May 2020 19:12:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4863,23 +4863,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e3b8f1f-cec5-4f88-8e09-765ac0a4681c"
+ "e40a9daf-c172-4a5a-90ec-d4694e86c390"
],
"Accept-Language": [
"en-US"
@@ -4902,13 +4902,13 @@
"11855"
],
"x-ms-request-id": [
- "c4ff7f8d-876b-46e3-b0e1-9e2498e1a170"
+ "715c919c-ad4c-4cde-9a79-9ccd947cb02d"
],
"x-ms-correlation-request-id": [
- "c4ff7f8d-876b-46e3-b0e1-9e2498e1a170"
+ "715c919c-ad4c-4cde-9a79-9ccd947cb02d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223158Z:c4ff7f8d-876b-46e3-b0e1-9e2498e1a170"
+ "NORTHCENTRALUS:20200519T191210Z:715c919c-ad4c-4cde-9a79-9ccd947cb02d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4917,7 +4917,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:57 GMT"
+ "Tue, 19 May 2020 19:12:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4926,23 +4926,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd32cd7f-94f3-4ce0-9b92-0091f83036f7"
+ "2bb7fb56-1d4d-43b1-8dc8-4e8708655662"
],
"Accept-Language": [
"en-US"
@@ -4965,13 +4965,13 @@
"11853"
],
"x-ms-request-id": [
- "34e00718-4b84-4308-953f-a5af544e3a7c"
+ "50c1a8ee-1d6d-4878-8dd9-b35d5fba7939"
],
"x-ms-correlation-request-id": [
- "34e00718-4b84-4308-953f-a5af544e3a7c"
+ "50c1a8ee-1d6d-4878-8dd9-b35d5fba7939"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223158Z:34e00718-4b84-4308-953f-a5af544e3a7c"
+ "NORTHCENTRALUS:20200519T191210Z:50c1a8ee-1d6d-4878-8dd9-b35d5fba7939"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4980,7 +4980,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:58 GMT"
+ "Tue, 19 May 2020 19:12:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4989,23 +4989,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.9464232Z\",\r\n \"duration\": \"PT22.8903006S\",\r\n \"trackingId\": \"f3b5e3fa-bca2-44b3-bef7-88991988033d\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3fb53d73-c10a-42dd-96ec-48ca1a481686"
+ "9f3e39ce-b00c-4e95-92f7-d648459a48aa"
],
"Accept-Language": [
"en-US"
@@ -5028,13 +5028,13 @@
"11851"
],
"x-ms-request-id": [
- "813cd47f-9b83-48cf-b138-ae2259c77012"
+ "4a043f4b-eac1-48e4-9a04-3d8f675c4f2a"
],
"x-ms-correlation-request-id": [
- "813cd47f-9b83-48cf-b138-ae2259c77012"
+ "4a043f4b-eac1-48e4-9a04-3d8f675c4f2a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223159Z:813cd47f-9b83-48cf-b138-ae2259c77012"
+ "NORTHCENTRALUS:20200519T191211Z:4a043f4b-eac1-48e4-9a04-3d8f675c4f2a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5043,7 +5043,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:58 GMT"
+ "Tue, 19 May 2020 19:12:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5052,23 +5052,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a1ceb8d-ca7c-4509-8ff1-c8981032c92f"
+ "e2d3025c-8275-4e54-a627-dae7c1acdf14"
],
"Accept-Language": [
"en-US"
@@ -5091,13 +5091,13 @@
"11849"
],
"x-ms-request-id": [
- "f3141886-6df2-4224-b982-84f6da9e484c"
+ "8336c38f-3e49-46c8-adaa-543e5ff046b8"
],
"x-ms-correlation-request-id": [
- "f3141886-6df2-4224-b982-84f6da9e484c"
+ "8336c38f-3e49-46c8-adaa-543e5ff046b8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223159Z:f3141886-6df2-4224-b982-84f6da9e484c"
+ "NORTHCENTRALUS:20200519T191211Z:8336c38f-3e49-46c8-adaa-543e5ff046b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5106,7 +5106,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:58 GMT"
+ "Tue, 19 May 2020 19:12:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5115,23 +5115,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3715dd73-80b5-469c-9605-a2dd88f6ec5b"
+ "b28a1e1f-8846-480e-863a-daa989b3598e"
],
"Accept-Language": [
"en-US"
@@ -5154,13 +5154,13 @@
"11847"
],
"x-ms-request-id": [
- "6dcd99e1-f820-4617-91c4-774fc48df43d"
+ "80363f71-7dac-4ee7-bf04-3beec5f10a24"
],
"x-ms-correlation-request-id": [
- "6dcd99e1-f820-4617-91c4-774fc48df43d"
+ "80363f71-7dac-4ee7-bf04-3beec5f10a24"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223200Z:6dcd99e1-f820-4617-91c4-774fc48df43d"
+ "NORTHCENTRALUS:20200519T191211Z:80363f71-7dac-4ee7-bf04-3beec5f10a24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5169,7 +5169,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:59 GMT"
+ "Tue, 19 May 2020 19:12:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5178,23 +5178,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40eb2f77-5dcc-46a8-b3f6-e334e8e5f17d"
+ "ca0587d0-c087-4771-9d90-51e98df55c01"
],
"Accept-Language": [
"en-US"
@@ -5217,13 +5217,13 @@
"11845"
],
"x-ms-request-id": [
- "8ffb9c11-eab2-4bda-a889-fcf377477012"
+ "cc07e508-ffa1-461a-96f4-294f2ba6d76f"
],
"x-ms-correlation-request-id": [
- "8ffb9c11-eab2-4bda-a889-fcf377477012"
+ "cc07e508-ffa1-461a-96f4-294f2ba6d76f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223200Z:8ffb9c11-eab2-4bda-a889-fcf377477012"
+ "NORTHCENTRALUS:20200519T191212Z:cc07e508-ffa1-461a-96f4-294f2ba6d76f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5232,7 +5232,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:59 GMT"
+ "Tue, 19 May 2020 19:12:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5241,23 +5241,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3063d52c-1b89-4547-8097-b8706f813523"
+ "1f0132c8-d5de-4e80-bc57-182aca405543"
],
"Accept-Language": [
"en-US"
@@ -5280,13 +5280,13 @@
"11843"
],
"x-ms-request-id": [
- "94fbec79-cd64-482e-ad39-502e6e1b7814"
+ "9b1e4167-ff61-4e41-bf58-f7bedaaffa09"
],
"x-ms-correlation-request-id": [
- "94fbec79-cd64-482e-ad39-502e6e1b7814"
+ "9b1e4167-ff61-4e41-bf58-f7bedaaffa09"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223200Z:94fbec79-cd64-482e-ad39-502e6e1b7814"
+ "NORTHCENTRALUS:20200519T191212Z:9b1e4167-ff61-4e41-bf58-f7bedaaffa09"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5295,7 +5295,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:00 GMT"
+ "Tue, 19 May 2020 19:12:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5304,23 +5304,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c570875c-bc6b-4d07-b72a-fcbb427e4f29"
+ "c6c91b7b-ca7d-4b5b-84dd-dff7cb49ab18"
],
"Accept-Language": [
"en-US"
@@ -5343,13 +5343,13 @@
"11841"
],
"x-ms-request-id": [
- "65fc78a2-e556-4033-b3ea-b36b462e26ed"
+ "259ba404-9aeb-4501-bf52-e60d4c499806"
],
"x-ms-correlation-request-id": [
- "65fc78a2-e556-4033-b3ea-b36b462e26ed"
+ "259ba404-9aeb-4501-bf52-e60d4c499806"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223201Z:65fc78a2-e556-4033-b3ea-b36b462e26ed"
+ "NORTHCENTRALUS:20200519T191212Z:259ba404-9aeb-4501-bf52-e60d4c499806"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5358,7 +5358,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:00 GMT"
+ "Tue, 19 May 2020 19:12:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5367,23 +5367,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "398e9e37-00c3-42f8-9cd5-2a4cdc3005d0"
+ "1ca48649-7f62-43cc-9bbc-0fdd087b9d3a"
],
"Accept-Language": [
"en-US"
@@ -5406,13 +5406,13 @@
"11839"
],
"x-ms-request-id": [
- "0948ce8f-28f9-4e14-a1cd-4e9008154a67"
+ "1402fc33-e872-4df3-be6b-e86d80555d89"
],
"x-ms-correlation-request-id": [
- "0948ce8f-28f9-4e14-a1cd-4e9008154a67"
+ "1402fc33-e872-4df3-be6b-e86d80555d89"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223201Z:0948ce8f-28f9-4e14-a1cd-4e9008154a67"
+ "NORTHCENTRALUS:20200519T191213Z:1402fc33-e872-4df3-be6b-e86d80555d89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5421,7 +5421,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:01 GMT"
+ "Tue, 19 May 2020 19:12:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5430,23 +5430,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "636f43a9-6e1c-4359-a4df-cb44f2be59de"
+ "614d51a7-9a9d-4b1a-81c4-57e5c148b4c2"
],
"Accept-Language": [
"en-US"
@@ -5469,13 +5469,13 @@
"11837"
],
"x-ms-request-id": [
- "1887665c-a9f6-4a70-903d-b4c7edc0659a"
+ "2f4f84f6-bad5-426c-8307-b3fb67005890"
],
"x-ms-correlation-request-id": [
- "1887665c-a9f6-4a70-903d-b4c7edc0659a"
+ "2f4f84f6-bad5-426c-8307-b3fb67005890"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223202Z:1887665c-a9f6-4a70-903d-b4c7edc0659a"
+ "NORTHCENTRALUS:20200519T191213Z:2f4f84f6-bad5-426c-8307-b3fb67005890"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5484,7 +5484,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:01 GMT"
+ "Tue, 19 May 2020 19:12:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5493,23 +5493,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8324a43-b24c-4f71-b70c-a04e7f0204ff"
+ "de64447a-daab-4327-aa24-0a2b15a3122e"
],
"Accept-Language": [
"en-US"
@@ -5532,13 +5532,13 @@
"11835"
],
"x-ms-request-id": [
- "25cd5ad0-7f47-4d29-9066-58054441b47f"
+ "dadfc52a-3654-43db-8bb1-6876895b8a4c"
],
"x-ms-correlation-request-id": [
- "25cd5ad0-7f47-4d29-9066-58054441b47f"
+ "dadfc52a-3654-43db-8bb1-6876895b8a4c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223202Z:25cd5ad0-7f47-4d29-9066-58054441b47f"
+ "NORTHCENTRALUS:20200519T191214Z:dadfc52a-3654-43db-8bb1-6876895b8a4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5547,7 +5547,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:01 GMT"
+ "Tue, 19 May 2020 19:12:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5556,23 +5556,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1893ae36-2580-4875-9725-c5273a8f726f"
+ "f1dc5e69-d9f0-4f1e-8fd9-3589c718c8be"
],
"Accept-Language": [
"en-US"
@@ -5595,13 +5595,13 @@
"11833"
],
"x-ms-request-id": [
- "97e9d951-074d-4ee0-b6bc-7bcf0a12788d"
+ "244d206a-82b3-436c-8e46-8f26c4a1da32"
],
"x-ms-correlation-request-id": [
- "97e9d951-074d-4ee0-b6bc-7bcf0a12788d"
+ "244d206a-82b3-436c-8e46-8f26c4a1da32"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223203Z:97e9d951-074d-4ee0-b6bc-7bcf0a12788d"
+ "NORTHCENTRALUS:20200519T191214Z:244d206a-82b3-436c-8e46-8f26c4a1da32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5610,7 +5610,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:02 GMT"
+ "Tue, 19 May 2020 19:12:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5619,23 +5619,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b40fe00f-3499-45cd-9366-efcd1e13b8c3"
+ "0d0b5f5f-7072-4dd6-b4a9-f25898e0d070"
],
"Accept-Language": [
"en-US"
@@ -5658,13 +5658,13 @@
"11831"
],
"x-ms-request-id": [
- "32614fb4-9224-46ce-832b-fa4146e0ab63"
+ "b2676a62-8514-49fe-acd9-bd1e2146d965"
],
"x-ms-correlation-request-id": [
- "32614fb4-9224-46ce-832b-fa4146e0ab63"
+ "b2676a62-8514-49fe-acd9-bd1e2146d965"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223203Z:32614fb4-9224-46ce-832b-fa4146e0ab63"
+ "NORTHCENTRALUS:20200519T191214Z:b2676a62-8514-49fe-acd9-bd1e2146d965"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5673,7 +5673,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:02 GMT"
+ "Tue, 19 May 2020 19:12:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5682,23 +5682,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "197a0b87-6878-4b1b-98cd-100db61a91f2"
+ "2fdcf9b0-6e1e-4b23-aa41-7c78bae0fdbd"
],
"Accept-Language": [
"en-US"
@@ -5721,13 +5721,13 @@
"11829"
],
"x-ms-request-id": [
- "c364f417-163f-45ae-ba7b-a78535b64843"
+ "6400dea1-9380-4aa1-81a0-caf29a6db0fa"
],
"x-ms-correlation-request-id": [
- "c364f417-163f-45ae-ba7b-a78535b64843"
+ "6400dea1-9380-4aa1-81a0-caf29a6db0fa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223203Z:c364f417-163f-45ae-ba7b-a78535b64843"
+ "NORTHCENTRALUS:20200519T191215Z:6400dea1-9380-4aa1-81a0-caf29a6db0fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5736,7 +5736,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:03 GMT"
+ "Tue, 19 May 2020 19:12:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5751,17 +5751,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:14.9187364Z\",\r\n \"duration\": \"PT24.9167073S\",\r\n \"trackingId\": \"48ede3b3-660d-46dd-a28b-fa4481fa4893\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ebbd6a2-a542-4821-8e1c-3c556ab7ce59"
+ "724bdbbe-ece3-422e-a31a-39bca58ab2f7"
],
"Accept-Language": [
"en-US"
@@ -5784,13 +5784,13 @@
"11827"
],
"x-ms-request-id": [
- "0348bafb-c3bf-4f26-a587-6a2aad23cb77"
+ "570400d0-55cc-499f-a310-58735700a292"
],
"x-ms-correlation-request-id": [
- "0348bafb-c3bf-4f26-a587-6a2aad23cb77"
+ "570400d0-55cc-499f-a310-58735700a292"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223204Z:0348bafb-c3bf-4f26-a587-6a2aad23cb77"
+ "NORTHCENTRALUS:20200519T191215Z:570400d0-55cc-499f-a310-58735700a292"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5799,7 +5799,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:03 GMT"
+ "Tue, 19 May 2020 19:12:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5814,17 +5814,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.4940276Z\",\r\n \"duration\": \"PT25.4919985S\",\r\n \"trackingId\": \"14688534-4784-43d1-bad0-dd06c64633fb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f389419f-52b7-4077-a175-e96b29a34d7a"
+ "acf694ae-a1b5-499b-bbc8-e9be0dd1d240"
],
"Accept-Language": [
"en-US"
@@ -5847,13 +5847,13 @@
"11825"
],
"x-ms-request-id": [
- "1433b88f-491a-4ef8-a9d3-234b1fce4b5e"
+ "4fc92285-5cc1-4889-abee-8fff82c4404b"
],
"x-ms-correlation-request-id": [
- "1433b88f-491a-4ef8-a9d3-234b1fce4b5e"
+ "4fc92285-5cc1-4889-abee-8fff82c4404b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223204Z:1433b88f-491a-4ef8-a9d3-234b1fce4b5e"
+ "NORTHCENTRALUS:20200519T191216Z:4fc92285-5cc1-4889-abee-8fff82c4404b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5862,7 +5862,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:04 GMT"
+ "Tue, 19 May 2020 19:12:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5877,17 +5877,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.8430477Z\",\r\n \"duration\": \"PT25.8410186S\",\r\n \"trackingId\": \"3c8a6aa7-cbc3-4cd3-9371-5839606b8c4b\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e4e8f4e-0e99-4c36-9569-41a1e34f57af"
+ "64cc1202-9143-46d7-bcd1-ea207c748549"
],
"Accept-Language": [
"en-US"
@@ -5910,13 +5910,13 @@
"11823"
],
"x-ms-request-id": [
- "28bf0a8a-be87-488f-9b0f-b15d4f817c18"
+ "9ede0dae-844c-4776-b395-13f218f784ef"
],
"x-ms-correlation-request-id": [
- "28bf0a8a-be87-488f-9b0f-b15d4f817c18"
+ "9ede0dae-844c-4776-b395-13f218f784ef"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223205Z:28bf0a8a-be87-488f-9b0f-b15d4f817c18"
+ "NORTHCENTRALUS:20200519T191216Z:9ede0dae-844c-4776-b395-13f218f784ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5925,7 +5925,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:04 GMT"
+ "Tue, 19 May 2020 19:12:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5940,17 +5940,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.8430477Z\",\r\n \"duration\": \"PT25.8410186S\",\r\n \"trackingId\": \"3c8a6aa7-cbc3-4cd3-9371-5839606b8c4b\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed79ed67-6934-44a5-be72-2e4ddbc6f0df"
+ "7359d271-7dd5-464f-9c11-c14cf4018376"
],
"Accept-Language": [
"en-US"
@@ -5973,13 +5973,13 @@
"11821"
],
"x-ms-request-id": [
- "290faf4d-c136-45d7-bd52-e44cc990e512"
+ "23df5cbb-054c-4f81-b79b-1c12102fb914"
],
"x-ms-correlation-request-id": [
- "290faf4d-c136-45d7-bd52-e44cc990e512"
+ "23df5cbb-054c-4f81-b79b-1c12102fb914"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223205Z:290faf4d-c136-45d7-bd52-e44cc990e512"
+ "NORTHCENTRALUS:20200519T191216Z:23df5cbb-054c-4f81-b79b-1c12102fb914"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5988,7 +5988,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:04 GMT"
+ "Tue, 19 May 2020 19:12:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6003,17 +6003,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.8430477Z\",\r\n \"duration\": \"PT25.8410186S\",\r\n \"trackingId\": \"3c8a6aa7-cbc3-4cd3-9371-5839606b8c4b\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c2232eb-dd27-481a-b188-4b20a102294e"
+ "3356659d-8548-428c-a5a2-c3050f035fc4"
],
"Accept-Language": [
"en-US"
@@ -6036,13 +6036,13 @@
"11819"
],
"x-ms-request-id": [
- "ac4077c7-ed79-4d42-85f1-9069121a8455"
+ "84fe96e4-f440-41f0-9243-3db35e95a71a"
],
"x-ms-correlation-request-id": [
- "ac4077c7-ed79-4d42-85f1-9069121a8455"
+ "84fe96e4-f440-41f0-9243-3db35e95a71a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223205Z:ac4077c7-ed79-4d42-85f1-9069121a8455"
+ "NORTHCENTRALUS:20200519T191217Z:84fe96e4-f440-41f0-9243-3db35e95a71a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6051,7 +6051,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:05 GMT"
+ "Tue, 19 May 2020 19:12:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6066,17 +6066,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.8430477Z\",\r\n \"duration\": \"PT25.8410186S\",\r\n \"trackingId\": \"3c8a6aa7-cbc3-4cd3-9371-5839606b8c4b\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e9be5ba-2792-44db-bb53-61810d6f4001"
+ "098398e1-477a-40fa-90de-eb3cc0c5808d"
],
"Accept-Language": [
"en-US"
@@ -6099,13 +6099,13 @@
"11817"
],
"x-ms-request-id": [
- "2d71923b-a1df-4528-9f29-9a9c729328f6"
+ "5da9c203-a3cf-47fe-a847-ada340f8b1ce"
],
"x-ms-correlation-request-id": [
- "2d71923b-a1df-4528-9f29-9a9c729328f6"
+ "5da9c203-a3cf-47fe-a847-ada340f8b1ce"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223206Z:2d71923b-a1df-4528-9f29-9a9c729328f6"
+ "NORTHCENTRALUS:20200519T191217Z:5da9c203-a3cf-47fe-a847-ada340f8b1ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6114,7 +6114,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:05 GMT"
+ "Tue, 19 May 2020 19:12:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6129,17 +6129,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.8430477Z\",\r\n \"duration\": \"PT25.8410186S\",\r\n \"trackingId\": \"3c8a6aa7-cbc3-4cd3-9371-5839606b8c4b\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26d62162-7b6b-478a-a2ca-afc6bbb512e3"
+ "abb22060-4889-4282-b8ea-687c3f7ab7e5"
],
"Accept-Language": [
"en-US"
@@ -6162,13 +6162,13 @@
"11815"
],
"x-ms-request-id": [
- "711017c5-2a5e-4edd-9682-f8f4d98e661c"
+ "7da1f34f-d52e-4e1b-881d-835e6b55c3ae"
],
"x-ms-correlation-request-id": [
- "711017c5-2a5e-4edd-9682-f8f4d98e661c"
+ "7da1f34f-d52e-4e1b-881d-835e6b55c3ae"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223206Z:711017c5-2a5e-4edd-9682-f8f4d98e661c"
+ "NORTHCENTRALUS:20200519T191218Z:7da1f34f-d52e-4e1b-881d-835e6b55c3ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6177,7 +6177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:06 GMT"
+ "Tue, 19 May 2020 19:12:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6192,17 +6192,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.8430477Z\",\r\n \"duration\": \"PT25.8410186S\",\r\n \"trackingId\": \"3c8a6aa7-cbc3-4cd3-9371-5839606b8c4b\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfc96f9e-e7b0-4c00-b743-d483a62ee965"
+ "60599977-8bc1-4f8b-9102-62dbab326911"
],
"Accept-Language": [
"en-US"
@@ -6225,13 +6225,13 @@
"11813"
],
"x-ms-request-id": [
- "1bd54703-f8d3-4587-b1fc-14567f2003c7"
+ "52bfd0a0-6ed8-43dc-88c7-7dba4edd25ed"
],
"x-ms-correlation-request-id": [
- "1bd54703-f8d3-4587-b1fc-14567f2003c7"
+ "52bfd0a0-6ed8-43dc-88c7-7dba4edd25ed"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223207Z:1bd54703-f8d3-4587-b1fc-14567f2003c7"
+ "NORTHCENTRALUS:20200519T191218Z:52bfd0a0-6ed8-43dc-88c7-7dba4edd25ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6240,7 +6240,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:06 GMT"
+ "Tue, 19 May 2020 19:12:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6249,23 +6249,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87a63d1b-662d-4411-aa73-a0675ff1bd5c"
+ "ac873f6a-dd63-4e8d-bca8-0be8850f6e95"
],
"Accept-Language": [
"en-US"
@@ -6288,13 +6288,13 @@
"11811"
],
"x-ms-request-id": [
- "414eec2c-92c8-475d-aa4c-42bef2e13e94"
+ "d442b49d-9ea1-42bb-b53e-ba5f647ec993"
],
"x-ms-correlation-request-id": [
- "414eec2c-92c8-475d-aa4c-42bef2e13e94"
+ "d442b49d-9ea1-42bb-b53e-ba5f647ec993"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223207Z:414eec2c-92c8-475d-aa4c-42bef2e13e94"
+ "NORTHCENTRALUS:20200519T191219Z:d442b49d-9ea1-42bb-b53e-ba5f647ec993"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6303,7 +6303,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:06 GMT"
+ "Tue, 19 May 2020 19:12:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6312,23 +6312,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.9359355Z\",\r\n \"duration\": \"PT29.8798129S\",\r\n \"trackingId\": \"602e1a61-a448-4ad9-9afe-a1adbc58114c\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e624074-f0ff-4a5a-b8b1-6582f16f6c2b"
+ "9c3d41ce-854f-4958-9af9-95c00fb1d9ec"
],
"Accept-Language": [
"en-US"
@@ -6351,13 +6351,13 @@
"11809"
],
"x-ms-request-id": [
- "34b5d687-44a0-4eae-a440-83c158e21f2d"
+ "a0a180ac-d4f7-4deb-87ea-4ec2e1a116b0"
],
"x-ms-correlation-request-id": [
- "34b5d687-44a0-4eae-a440-83c158e21f2d"
+ "a0a180ac-d4f7-4deb-87ea-4ec2e1a116b0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223208Z:34b5d687-44a0-4eae-a440-83c158e21f2d"
+ "NORTHCENTRALUS:20200519T191219Z:a0a180ac-d4f7-4deb-87ea-4ec2e1a116b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6366,7 +6366,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:07 GMT"
+ "Tue, 19 May 2020 19:12:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6375,23 +6375,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a33efa8a-37f3-4acd-a7f7-1514dd80b7ef"
+ "2b79c560-aac9-4354-b2e0-3dc2fd71fadd"
],
"Accept-Language": [
"en-US"
@@ -6414,13 +6414,13 @@
"11807"
],
"x-ms-request-id": [
- "8e8b6d90-b0cc-4777-ac36-428969ad8ac1"
+ "10258803-833f-46b9-89be-738635b28cb1"
],
"x-ms-correlation-request-id": [
- "8e8b6d90-b0cc-4777-ac36-428969ad8ac1"
+ "10258803-833f-46b9-89be-738635b28cb1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223208Z:8e8b6d90-b0cc-4777-ac36-428969ad8ac1"
+ "NORTHCENTRALUS:20200519T191219Z:10258803-833f-46b9-89be-738635b28cb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6429,7 +6429,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:07 GMT"
+ "Tue, 19 May 2020 19:12:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6438,23 +6438,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb5c900d-cbdc-4f68-93ed-30423326057e"
+ "bb7c0dc2-6f82-4457-abf8-885c07b55fc4"
],
"Accept-Language": [
"en-US"
@@ -6477,13 +6477,13 @@
"11805"
],
"x-ms-request-id": [
- "0221b97b-ef6e-4265-873b-657cfafad9b6"
+ "021e3e95-9f2c-4ff4-85c8-e1ef0ef354fe"
],
"x-ms-correlation-request-id": [
- "0221b97b-ef6e-4265-873b-657cfafad9b6"
+ "021e3e95-9f2c-4ff4-85c8-e1ef0ef354fe"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223208Z:0221b97b-ef6e-4265-873b-657cfafad9b6"
+ "NORTHCENTRALUS:20200519T191220Z:021e3e95-9f2c-4ff4-85c8-e1ef0ef354fe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6492,7 +6492,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:08 GMT"
+ "Tue, 19 May 2020 19:12:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6501,23 +6501,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d90e35f6-09bf-443f-bc23-9b962ab7471a"
+ "9283f53f-d245-4d20-a3ac-9be3c7c7c08e"
],
"Accept-Language": [
"en-US"
@@ -6540,13 +6540,13 @@
"11803"
],
"x-ms-request-id": [
- "409006af-a8de-4599-b8a0-37c04975d275"
+ "5f342172-27d1-45ad-a789-b0d3c5fbf3ce"
],
"x-ms-correlation-request-id": [
- "409006af-a8de-4599-b8a0-37c04975d275"
+ "5f342172-27d1-45ad-a789-b0d3c5fbf3ce"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223209Z:409006af-a8de-4599-b8a0-37c04975d275"
+ "NORTHCENTRALUS:20200519T191220Z:5f342172-27d1-45ad-a789-b0d3c5fbf3ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6555,7 +6555,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:08 GMT"
+ "Tue, 19 May 2020 19:12:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6564,23 +6564,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "276f1150-e707-445c-ac07-6e3969714bcc"
+ "16245722-187e-4da8-b735-70dc5050263c"
],
"Accept-Language": [
"en-US"
@@ -6603,13 +6603,13 @@
"11801"
],
"x-ms-request-id": [
- "2a5f071e-e9a0-4ea5-a38b-49c772fed46c"
+ "fb80f8f7-814f-47ec-9f9c-44d37906385d"
],
"x-ms-correlation-request-id": [
- "2a5f071e-e9a0-4ea5-a38b-49c772fed46c"
+ "fb80f8f7-814f-47ec-9f9c-44d37906385d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223209Z:2a5f071e-e9a0-4ea5-a38b-49c772fed46c"
+ "NORTHCENTRALUS:20200519T191221Z:fb80f8f7-814f-47ec-9f9c-44d37906385d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6618,7 +6618,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:09 GMT"
+ "Tue, 19 May 2020 19:12:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6627,23 +6627,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42495b54-5354-4d33-a101-f5a1ca25b068"
+ "3a9bafbe-5a16-474c-bda7-1f4969301e1a"
],
"Accept-Language": [
"en-US"
@@ -6666,13 +6666,13 @@
"11799"
],
"x-ms-request-id": [
- "f5efbe4a-5ad1-4d77-9a1f-3884729c830e"
+ "e112ca7a-6b6f-4841-b841-aa65b2e807da"
],
"x-ms-correlation-request-id": [
- "f5efbe4a-5ad1-4d77-9a1f-3884729c830e"
+ "e112ca7a-6b6f-4841-b841-aa65b2e807da"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223210Z:f5efbe4a-5ad1-4d77-9a1f-3884729c830e"
+ "NORTHCENTRALUS:20200519T191221Z:e112ca7a-6b6f-4841-b841-aa65b2e807da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6681,7 +6681,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:09 GMT"
+ "Tue, 19 May 2020 19:12:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6690,23 +6690,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d9cdcb2-916c-4c4b-b008-97ffbd072639"
+ "b05519d8-1bd0-47bb-ba64-60bd84368f78"
],
"Accept-Language": [
"en-US"
@@ -6729,13 +6729,13 @@
"11797"
],
"x-ms-request-id": [
- "abfb510c-b103-4836-b94c-5f1fba8586e6"
+ "3e9530ae-caa1-4df1-a0ac-90c8bd4f605b"
],
"x-ms-correlation-request-id": [
- "abfb510c-b103-4836-b94c-5f1fba8586e6"
+ "3e9530ae-caa1-4df1-a0ac-90c8bd4f605b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223210Z:abfb510c-b103-4836-b94c-5f1fba8586e6"
+ "NORTHCENTRALUS:20200519T191221Z:3e9530ae-caa1-4df1-a0ac-90c8bd4f605b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6744,7 +6744,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:09 GMT"
+ "Tue, 19 May 2020 19:12:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6753,23 +6753,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29cb0642-489d-4610-9d56-4b78e56840dd"
+ "90ea700c-c5bb-4d0d-b24f-72cf14181352"
],
"Accept-Language": [
"en-US"
@@ -6792,13 +6792,13 @@
"11795"
],
"x-ms-request-id": [
- "08fa44ef-d653-40a3-94bc-5277d004a7b8"
+ "f5375806-65ef-4041-be9f-896bd1f30aa2"
],
"x-ms-correlation-request-id": [
- "08fa44ef-d653-40a3-94bc-5277d004a7b8"
+ "f5375806-65ef-4041-be9f-896bd1f30aa2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223211Z:08fa44ef-d653-40a3-94bc-5277d004a7b8"
+ "NORTHCENTRALUS:20200519T191222Z:f5375806-65ef-4041-be9f-896bd1f30aa2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6807,7 +6807,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:10 GMT"
+ "Tue, 19 May 2020 19:12:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6816,23 +6816,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0f039a7-0114-43a8-8f83-27a30c30d504"
+ "ea4b7cc4-545f-4c5b-98fb-16213daba007"
],
"Accept-Language": [
"en-US"
@@ -6855,13 +6855,13 @@
"11793"
],
"x-ms-request-id": [
- "9f63a434-8426-4ca5-a44f-49390594f46f"
+ "b18da888-e03c-4525-8abc-768e16439d5c"
],
"x-ms-correlation-request-id": [
- "9f63a434-8426-4ca5-a44f-49390594f46f"
+ "b18da888-e03c-4525-8abc-768e16439d5c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223211Z:9f63a434-8426-4ca5-a44f-49390594f46f"
+ "NORTHCENTRALUS:20200519T191222Z:b18da888-e03c-4525-8abc-768e16439d5c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6870,7 +6870,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:10 GMT"
+ "Tue, 19 May 2020 19:12:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6879,23 +6879,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "086e2644-aba5-4560-a9ef-526a7158f7bb"
+ "a955c894-04a1-4dde-b92d-b124dcaa83b1"
],
"Accept-Language": [
"en-US"
@@ -6918,13 +6918,13 @@
"11791"
],
"x-ms-request-id": [
- "19d38f3b-fa7f-4a29-9d7e-a9bca1204b96"
+ "1c347e03-b7c7-45a1-b08c-1b77462cc3c0"
],
"x-ms-correlation-request-id": [
- "19d38f3b-fa7f-4a29-9d7e-a9bca1204b96"
+ "1c347e03-b7c7-45a1-b08c-1b77462cc3c0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223212Z:19d38f3b-fa7f-4a29-9d7e-a9bca1204b96"
+ "NORTHCENTRALUS:20200519T191223Z:1c347e03-b7c7-45a1-b08c-1b77462cc3c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6933,7 +6933,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:11 GMT"
+ "Tue, 19 May 2020 19:12:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6942,23 +6942,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d1a046a-2654-4532-be01-e8516b1d6e71"
+ "d32acf50-d9f4-484a-a98b-98026740f217"
],
"Accept-Language": [
"en-US"
@@ -6981,13 +6981,13 @@
"11789"
],
"x-ms-request-id": [
- "4c0aa315-1ce3-4e6b-8778-62a10eba48c8"
+ "b0fa2888-c9e3-447e-86b9-6338905bb326"
],
"x-ms-correlation-request-id": [
- "4c0aa315-1ce3-4e6b-8778-62a10eba48c8"
+ "b0fa2888-c9e3-447e-86b9-6338905bb326"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223212Z:4c0aa315-1ce3-4e6b-8778-62a10eba48c8"
+ "NORTHCENTRALUS:20200519T191223Z:b0fa2888-c9e3-447e-86b9-6338905bb326"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6996,7 +6996,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:11 GMT"
+ "Tue, 19 May 2020 19:12:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7005,23 +7005,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5350261Z\",\r\n \"duration\": \"PT28.532997S\",\r\n \"trackingId\": \"eb893e4a-9fe6-4ca6-8b7c-a80e8dcb59b0\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4607f85c-f7ba-410d-b070-3b1cd695f6e3"
+ "4baba964-7e6e-4647-97ec-6a142de2c12d"
],
"Accept-Language": [
"en-US"
@@ -7044,13 +7044,13 @@
"11787"
],
"x-ms-request-id": [
- "87904e52-3d05-460d-aa24-5ac99ab347aa"
+ "d48b13e3-639b-4194-9c2f-372a3acc5683"
],
"x-ms-correlation-request-id": [
- "87904e52-3d05-460d-aa24-5ac99ab347aa"
+ "d48b13e3-639b-4194-9c2f-372a3acc5683"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223212Z:87904e52-3d05-460d-aa24-5ac99ab347aa"
+ "NORTHCENTRALUS:20200519T191224Z:d48b13e3-639b-4194-9c2f-372a3acc5683"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7059,7 +7059,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:11 GMT"
+ "Tue, 19 May 2020 19:12:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7074,17 +7074,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3d2bc77-62c1-4d29-9312-076e1ef26cc2"
+ "4528ce60-3df1-4a10-beff-e07898fae769"
],
"Accept-Language": [
"en-US"
@@ -7107,13 +7107,13 @@
"11785"
],
"x-ms-request-id": [
- "1ff59f9a-db49-434b-8f60-922e3fb1421a"
+ "653efa9e-10c2-486e-87c0-93142d2808c2"
],
"x-ms-correlation-request-id": [
- "1ff59f9a-db49-434b-8f60-922e3fb1421a"
+ "653efa9e-10c2-486e-87c0-93142d2808c2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223213Z:1ff59f9a-db49-434b-8f60-922e3fb1421a"
+ "NORTHCENTRALUS:20200519T191224Z:653efa9e-10c2-486e-87c0-93142d2808c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7122,7 +7122,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:12 GMT"
+ "Tue, 19 May 2020 19:12:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7137,17 +7137,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ae61497-9713-4919-bc00-09be0e2413a9"
+ "44c6e145-2646-4297-a22b-10a3d16b314c"
],
"Accept-Language": [
"en-US"
@@ -7170,13 +7170,13 @@
"11783"
],
"x-ms-request-id": [
- "f6689a4c-d8e6-42a9-8b58-71de0be89837"
+ "8ab34684-ad27-445c-a8aa-3d3bcec3f9e3"
],
"x-ms-correlation-request-id": [
- "f6689a4c-d8e6-42a9-8b58-71de0be89837"
+ "8ab34684-ad27-445c-a8aa-3d3bcec3f9e3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223213Z:f6689a4c-d8e6-42a9-8b58-71de0be89837"
+ "NORTHCENTRALUS:20200519T191224Z:8ab34684-ad27-445c-a8aa-3d3bcec3f9e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7185,7 +7185,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:12 GMT"
+ "Tue, 19 May 2020 19:12:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7200,17 +7200,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9752f6ce-5aea-49e7-8e52-5a4952da7f61"
+ "8562850b-f0b9-4792-b85f-cc68c44767da"
],
"Accept-Language": [
"en-US"
@@ -7233,13 +7233,13 @@
"11781"
],
"x-ms-request-id": [
- "d03f9f15-04bb-4f70-8e59-be0b93302ee1"
+ "a7f2adc1-cb51-4cfa-994f-cca727dfd721"
],
"x-ms-correlation-request-id": [
- "d03f9f15-04bb-4f70-8e59-be0b93302ee1"
+ "a7f2adc1-cb51-4cfa-994f-cca727dfd721"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223214Z:d03f9f15-04bb-4f70-8e59-be0b93302ee1"
+ "NORTHCENTRALUS:20200519T191225Z:a7f2adc1-cb51-4cfa-994f-cca727dfd721"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7248,7 +7248,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:13 GMT"
+ "Tue, 19 May 2020 19:12:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7263,17 +7263,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56971716-e4be-4656-81c8-2f5295a037f6"
+ "72cf7171-8ac0-4d64-94e7-f5cfabf6f4ea"
],
"Accept-Language": [
"en-US"
@@ -7296,13 +7296,13 @@
"11779"
],
"x-ms-request-id": [
- "69a9c9b9-0597-4d07-9ab6-52d2dabf33ca"
+ "6d2108c7-78f2-402a-b682-bb875424ee9e"
],
"x-ms-correlation-request-id": [
- "69a9c9b9-0597-4d07-9ab6-52d2dabf33ca"
+ "6d2108c7-78f2-402a-b682-bb875424ee9e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223214Z:69a9c9b9-0597-4d07-9ab6-52d2dabf33ca"
+ "NORTHCENTRALUS:20200519T191225Z:6d2108c7-78f2-402a-b682-bb875424ee9e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7311,7 +7311,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:13 GMT"
+ "Tue, 19 May 2020 19:12:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7326,17 +7326,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7d06beeb-1dc5-4db2-be41-34b2419fbcd0"
+ "6b83038e-30e6-4025-93b2-0fb9540e18be"
],
"Accept-Language": [
"en-US"
@@ -7359,13 +7359,13 @@
"11777"
],
"x-ms-request-id": [
- "fd2a03f1-bd10-4248-863f-5e776a1df6f9"
+ "2a421954-7ec6-4441-a924-cff48774d253"
],
"x-ms-correlation-request-id": [
- "fd2a03f1-bd10-4248-863f-5e776a1df6f9"
+ "2a421954-7ec6-4441-a924-cff48774d253"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223215Z:fd2a03f1-bd10-4248-863f-5e776a1df6f9"
+ "NORTHCENTRALUS:20200519T191226Z:2a421954-7ec6-4441-a924-cff48774d253"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7374,7 +7374,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:14 GMT"
+ "Tue, 19 May 2020 19:12:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7389,17 +7389,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4457ad54-e92d-44bb-b762-51f424a8254f"
+ "a5f4f28c-5807-4deb-a38c-caa5b3893000"
],
"Accept-Language": [
"en-US"
@@ -7422,13 +7422,13 @@
"11775"
],
"x-ms-request-id": [
- "2e497c8c-0512-43df-b1fc-547c4c6315b5"
+ "31f2878a-03f3-4a5a-85eb-3bd32e987186"
],
"x-ms-correlation-request-id": [
- "2e497c8c-0512-43df-b1fc-547c4c6315b5"
+ "31f2878a-03f3-4a5a-85eb-3bd32e987186"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223215Z:2e497c8c-0512-43df-b1fc-547c4c6315b5"
+ "NORTHCENTRALUS:20200519T191226Z:31f2878a-03f3-4a5a-85eb-3bd32e987186"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7437,7 +7437,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:14 GMT"
+ "Tue, 19 May 2020 19:12:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7452,17 +7452,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2625536a-33b6-4a13-b35d-07ecd04dec1c"
+ "959ca835-aa41-4373-8699-084fc0f4fdc6"
],
"Accept-Language": [
"en-US"
@@ -7485,13 +7485,13 @@
"11773"
],
"x-ms-request-id": [
- "60c2a98a-06d9-403c-8ad4-03cf75b7889c"
+ "3414fae8-c7ea-4caf-ac0c-156e5aa95f7a"
],
"x-ms-correlation-request-id": [
- "60c2a98a-06d9-403c-8ad4-03cf75b7889c"
+ "3414fae8-c7ea-4caf-ac0c-156e5aa95f7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223215Z:60c2a98a-06d9-403c-8ad4-03cf75b7889c"
+ "NORTHCENTRALUS:20200519T191226Z:3414fae8-c7ea-4caf-ac0c-156e5aa95f7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7500,7 +7500,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:14 GMT"
+ "Tue, 19 May 2020 19:12:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7515,17 +7515,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ff486d4-23a2-4778-9fdb-538d340f0885"
+ "b5ff8aa2-9e66-408d-a030-2d94b0e631c6"
],
"Accept-Language": [
"en-US"
@@ -7548,13 +7548,13 @@
"11771"
],
"x-ms-request-id": [
- "f308587b-a569-4439-882c-1bb18c375ab3"
+ "5ea6c4ee-d96c-4857-933b-fbb301967fcc"
],
"x-ms-correlation-request-id": [
- "f308587b-a569-4439-882c-1bb18c375ab3"
+ "5ea6c4ee-d96c-4857-933b-fbb301967fcc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223216Z:f308587b-a569-4439-882c-1bb18c375ab3"
+ "NORTHCENTRALUS:20200519T191227Z:5ea6c4ee-d96c-4857-933b-fbb301967fcc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7563,7 +7563,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:15 GMT"
+ "Tue, 19 May 2020 19:12:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7578,17 +7578,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1a4fb5b-8345-4831-8e6c-c91b46e10bcc"
+ "e2801581-2c80-4929-a7df-bc546df6abb4"
],
"Accept-Language": [
"en-US"
@@ -7611,13 +7611,13 @@
"11769"
],
"x-ms-request-id": [
- "b7b2cf66-d42f-4fc0-ae9e-c364846a8b6e"
+ "2865afb8-9276-401e-ab7c-8232bffe88fc"
],
"x-ms-correlation-request-id": [
- "b7b2cf66-d42f-4fc0-ae9e-c364846a8b6e"
+ "2865afb8-9276-401e-ab7c-8232bffe88fc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223216Z:b7b2cf66-d42f-4fc0-ae9e-c364846a8b6e"
+ "NORTHCENTRALUS:20200519T191227Z:2865afb8-9276-401e-ab7c-8232bffe88fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7626,7 +7626,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:15 GMT"
+ "Tue, 19 May 2020 19:12:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7641,17 +7641,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.6936639Z\",\r\n \"duration\": \"PT38.6375413S\",\r\n \"trackingId\": \"4ae72464-6d18-421e-8b08-916d5c85e982\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2f2529d-d9ce-4e6f-b14f-03ddab963399"
+ "2130ed68-7625-4ce3-b648-47d2f98f3415"
],
"Accept-Language": [
"en-US"
@@ -7674,13 +7674,13 @@
"11767"
],
"x-ms-request-id": [
- "0336c222-d8ca-453c-81ec-19fc071ce755"
+ "43c424f5-107e-41ce-98e7-75e270e6d553"
],
"x-ms-correlation-request-id": [
- "0336c222-d8ca-453c-81ec-19fc071ce755"
+ "43c424f5-107e-41ce-98e7-75e270e6d553"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223217Z:0336c222-d8ca-453c-81ec-19fc071ce755"
+ "NORTHCENTRALUS:20200519T191228Z:43c424f5-107e-41ce-98e7-75e270e6d553"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7689,7 +7689,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:16 GMT"
+ "Tue, 19 May 2020 19:12:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7698,23 +7698,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3547a07c-04ff-4aff-a39c-b49bf76dd7e1"
+ "da73d114-f401-42a1-bbef-9ce4f0eac3e0"
],
"Accept-Language": [
"en-US"
@@ -7737,13 +7737,13 @@
"11765"
],
"x-ms-request-id": [
- "9a4d503a-ca1e-43c0-a4d5-fc0fb2e7a1ea"
+ "a0b77923-6ed1-48cb-8db5-fd89fd7e9644"
],
"x-ms-correlation-request-id": [
- "9a4d503a-ca1e-43c0-a4d5-fc0fb2e7a1ea"
+ "a0b77923-6ed1-48cb-8db5-fd89fd7e9644"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223217Z:9a4d503a-ca1e-43c0-a4d5-fc0fb2e7a1ea"
+ "NORTHCENTRALUS:20200519T191228Z:a0b77923-6ed1-48cb-8db5-fd89fd7e9644"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7752,7 +7752,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:16 GMT"
+ "Tue, 19 May 2020 19:12:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7761,23 +7761,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30ac84ae-50d9-4af9-855e-b96325508a08"
+ "8c22612e-a3f0-4bd0-97f4-7566b41ef030"
],
"Accept-Language": [
"en-US"
@@ -7800,13 +7800,13 @@
"11763"
],
"x-ms-request-id": [
- "270c34be-c0e5-4903-978b-2a8e8efe54e6"
+ "409e5b48-4003-443e-b689-9ed0b884a7a1"
],
"x-ms-correlation-request-id": [
- "270c34be-c0e5-4903-978b-2a8e8efe54e6"
+ "409e5b48-4003-443e-b689-9ed0b884a7a1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223217Z:270c34be-c0e5-4903-978b-2a8e8efe54e6"
+ "NORTHCENTRALUS:20200519T191229Z:409e5b48-4003-443e-b689-9ed0b884a7a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7815,7 +7815,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:17 GMT"
+ "Tue, 19 May 2020 19:12:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7824,23 +7824,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e700e646-9d39-4e83-ad28-0a102bf9245a"
+ "543c16d7-3cdd-4f9a-b508-b5ec32db68ec"
],
"Accept-Language": [
"en-US"
@@ -7863,13 +7863,13 @@
"11761"
],
"x-ms-request-id": [
- "9026e435-4a11-43c1-9458-10ca198e1bfe"
+ "a7e6f1fc-6db9-489d-b73d-48027925d616"
],
"x-ms-correlation-request-id": [
- "9026e435-4a11-43c1-9458-10ca198e1bfe"
+ "a7e6f1fc-6db9-489d-b73d-48027925d616"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223218Z:9026e435-4a11-43c1-9458-10ca198e1bfe"
+ "NORTHCENTRALUS:20200519T191229Z:a7e6f1fc-6db9-489d-b73d-48027925d616"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7878,7 +7878,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:17 GMT"
+ "Tue, 19 May 2020 19:12:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7887,23 +7887,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0597082-67e9-4eb2-b2e9-ebc587711d23"
+ "3497ea17-0d4a-4814-a6b7-cd2978cfa5d0"
],
"Accept-Language": [
"en-US"
@@ -7926,13 +7926,13 @@
"11759"
],
"x-ms-request-id": [
- "1bae6461-78ed-4662-ac2c-5c96f4d81465"
+ "8467bb57-97ea-4437-82ab-430f05d9ae56"
],
"x-ms-correlation-request-id": [
- "1bae6461-78ed-4662-ac2c-5c96f4d81465"
+ "8467bb57-97ea-4437-82ab-430f05d9ae56"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223218Z:1bae6461-78ed-4662-ac2c-5c96f4d81465"
+ "NORTHCENTRALUS:20200519T191229Z:8467bb57-97ea-4437-82ab-430f05d9ae56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7941,7 +7941,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:17 GMT"
+ "Tue, 19 May 2020 19:12:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7950,23 +7950,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "206252b3-667b-4a04-9731-6357073f0aa3"
+ "d5154525-d431-4860-8249-cd7ca188e77a"
],
"Accept-Language": [
"en-US"
@@ -7989,13 +7989,13 @@
"11757"
],
"x-ms-request-id": [
- "4c619ea8-e047-4e67-8f0d-9fe9abf0e141"
+ "305cdac1-e9ee-4845-aa55-dd4f61ae83c7"
],
"x-ms-correlation-request-id": [
- "4c619ea8-e047-4e67-8f0d-9fe9abf0e141"
+ "305cdac1-e9ee-4845-aa55-dd4f61ae83c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223219Z:4c619ea8-e047-4e67-8f0d-9fe9abf0e141"
+ "NORTHCENTRALUS:20200519T191230Z:305cdac1-e9ee-4845-aa55-dd4f61ae83c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8004,7 +8004,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:18 GMT"
+ "Tue, 19 May 2020 19:12:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8013,23 +8013,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c519253a-ed55-4a7b-9da4-f4356c6a7b81"
+ "b00509f5-1c3e-400e-838f-321b7c488577"
],
"Accept-Language": [
"en-US"
@@ -8052,13 +8052,13 @@
"11755"
],
"x-ms-request-id": [
- "f4e4ec32-1f63-4fb9-935c-295264412fc4"
+ "4d29869e-c048-4424-9ef8-3724f07e03a8"
],
"x-ms-correlation-request-id": [
- "f4e4ec32-1f63-4fb9-935c-295264412fc4"
+ "4d29869e-c048-4424-9ef8-3724f07e03a8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223219Z:f4e4ec32-1f63-4fb9-935c-295264412fc4"
+ "NORTHCENTRALUS:20200519T191230Z:4d29869e-c048-4424-9ef8-3724f07e03a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8067,7 +8067,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:18 GMT"
+ "Tue, 19 May 2020 19:12:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8076,23 +8076,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84e6b2e0-16e7-41bd-a081-f646e8776e60"
+ "874b4d44-be86-4ae6-8ab9-dcfa3fb6c278"
],
"Accept-Language": [
"en-US"
@@ -8115,13 +8115,13 @@
"11753"
],
"x-ms-request-id": [
- "ba785cfb-236d-4553-9a48-91978026a9c7"
+ "b8605896-cab6-4515-8da2-9a475329c4c3"
],
"x-ms-correlation-request-id": [
- "ba785cfb-236d-4553-9a48-91978026a9c7"
+ "b8605896-cab6-4515-8da2-9a475329c4c3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223220Z:ba785cfb-236d-4553-9a48-91978026a9c7"
+ "NORTHCENTRALUS:20200519T191231Z:b8605896-cab6-4515-8da2-9a475329c4c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8130,7 +8130,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:19 GMT"
+ "Tue, 19 May 2020 19:12:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8139,23 +8139,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eeaa0e3-1f2c-43bb-badc-1819cab618bf"
+ "2065dd1a-26d2-47ef-936a-9d06fc9280ff"
],
"Accept-Language": [
"en-US"
@@ -8178,13 +8178,13 @@
"11751"
],
"x-ms-request-id": [
- "e6fa062d-0f66-4517-824b-824c5f798955"
+ "d6a02381-758e-46f5-9532-87a2eb9e0dc2"
],
"x-ms-correlation-request-id": [
- "e6fa062d-0f66-4517-824b-824c5f798955"
+ "d6a02381-758e-46f5-9532-87a2eb9e0dc2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223220Z:e6fa062d-0f66-4517-824b-824c5f798955"
+ "NORTHCENTRALUS:20200519T191231Z:d6a02381-758e-46f5-9532-87a2eb9e0dc2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8193,7 +8193,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:19 GMT"
+ "Tue, 19 May 2020 19:12:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8202,23 +8202,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b3a333c-3fc6-4898-9ffe-75fae794c269"
+ "ad33ed1f-b1be-4239-9003-44d99fe808d7"
],
"Accept-Language": [
"en-US"
@@ -8241,13 +8241,13 @@
"11749"
],
"x-ms-request-id": [
- "4c9a18a7-2e0d-4d54-a4c3-6d790034c1f4"
+ "29ff9993-db97-4047-a9b1-60c2576fd326"
],
"x-ms-correlation-request-id": [
- "4c9a18a7-2e0d-4d54-a4c3-6d790034c1f4"
+ "29ff9993-db97-4047-a9b1-60c2576fd326"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223220Z:4c9a18a7-2e0d-4d54-a4c3-6d790034c1f4"
+ "NORTHCENTRALUS:20200519T191231Z:29ff9993-db97-4047-a9b1-60c2576fd326"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8256,7 +8256,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:19 GMT"
+ "Tue, 19 May 2020 19:12:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8265,23 +8265,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "09302862-20a2-4521-9b1d-340e4d06b01b"
+ "74199b7b-96a8-4b32-85b4-4646c2f49d42"
],
"Accept-Language": [
"en-US"
@@ -8304,13 +8304,13 @@
"11747"
],
"x-ms-request-id": [
- "08759069-e374-4b32-abb7-a27896a6ce37"
+ "5b2b6607-9637-4943-bb2f-618e774ae0c8"
],
"x-ms-correlation-request-id": [
- "08759069-e374-4b32-abb7-a27896a6ce37"
+ "5b2b6607-9637-4943-bb2f-618e774ae0c8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223221Z:08759069-e374-4b32-abb7-a27896a6ce37"
+ "NORTHCENTRALUS:20200519T191232Z:5b2b6607-9637-4943-bb2f-618e774ae0c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8319,7 +8319,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:21 GMT"
+ "Tue, 19 May 2020 19:12:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8328,23 +8328,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "777c7426-4ff9-4212-a9c4-d5f2dcaf83cd"
+ "c10c8ff5-5e71-4b77-9466-f2e506f8a57b"
],
"Accept-Language": [
"en-US"
@@ -8367,13 +8367,13 @@
"11745"
],
"x-ms-request-id": [
- "7a1b242e-983e-44c5-8a45-09e152b6b3ef"
+ "048e62d2-8b49-4c11-aba5-0ccd77a0b8e1"
],
"x-ms-correlation-request-id": [
- "7a1b242e-983e-44c5-8a45-09e152b6b3ef"
+ "048e62d2-8b49-4c11-aba5-0ccd77a0b8e1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223221Z:7a1b242e-983e-44c5-8a45-09e152b6b3ef"
+ "NORTHCENTRALUS:20200519T191232Z:048e62d2-8b49-4c11-aba5-0ccd77a0b8e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8382,7 +8382,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:21 GMT"
+ "Tue, 19 May 2020 19:12:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8391,23 +8391,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8dd30e1-e720-4195-829c-70b42e207e98"
+ "5f783525-b2b1-4ea9-b8c2-b312452d81a4"
],
"Accept-Language": [
"en-US"
@@ -8430,13 +8430,13 @@
"11743"
],
"x-ms-request-id": [
- "b5af1f0f-e78b-4a89-b521-e6afb670a2c5"
+ "66ccb6a1-b64b-43e5-81f5-5c48853459c0"
],
"x-ms-correlation-request-id": [
- "b5af1f0f-e78b-4a89-b521-e6afb670a2c5"
+ "66ccb6a1-b64b-43e5-81f5-5c48853459c0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223222Z:b5af1f0f-e78b-4a89-b521-e6afb670a2c5"
+ "NORTHCENTRALUS:20200519T191233Z:66ccb6a1-b64b-43e5-81f5-5c48853459c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8445,7 +8445,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:22 GMT"
+ "Tue, 19 May 2020 19:12:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8454,23 +8454,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e391d06d-9e85-4193-beff-156e15ef02a6"
+ "80a77414-f7b9-4caf-b28e-e06f62003be2"
],
"Accept-Language": [
"en-US"
@@ -8493,13 +8493,13 @@
"11741"
],
"x-ms-request-id": [
- "2b80e27e-0604-4376-895d-41c0d7330200"
+ "e5c6d9c1-37c4-451c-b9da-1581480534eb"
],
"x-ms-correlation-request-id": [
- "2b80e27e-0604-4376-895d-41c0d7330200"
+ "e5c6d9c1-37c4-451c-b9da-1581480534eb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223222Z:2b80e27e-0604-4376-895d-41c0d7330200"
+ "NORTHCENTRALUS:20200519T191233Z:e5c6d9c1-37c4-451c-b9da-1581480534eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8508,7 +8508,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:22 GMT"
+ "Tue, 19 May 2020 19:12:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8517,23 +8517,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3255fee-c56c-4ad5-a816-402c13609a6a"
+ "8bc27a8b-bcc6-48d5-b349-a8e0dc92269a"
],
"Accept-Language": [
"en-US"
@@ -8556,13 +8556,13 @@
"11739"
],
"x-ms-request-id": [
- "c62a3902-193d-4ff0-96b1-1f2dd3883b46"
+ "76d71131-7684-4ef4-a1e9-f18e42661d92"
],
"x-ms-correlation-request-id": [
- "c62a3902-193d-4ff0-96b1-1f2dd3883b46"
+ "76d71131-7684-4ef4-a1e9-f18e42661d92"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223223Z:c62a3902-193d-4ff0-96b1-1f2dd3883b46"
+ "NORTHCENTRALUS:20200519T191234Z:76d71131-7684-4ef4-a1e9-f18e42661d92"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8571,7 +8571,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:23 GMT"
+ "Tue, 19 May 2020 19:12:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8580,23 +8580,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7bd7db38-cc54-4f0a-a894-80b8f3bcf333"
+ "f8e8c9b7-7894-48e6-a514-fb5f78a59bfe"
],
"Accept-Language": [
"en-US"
@@ -8619,13 +8619,13 @@
"11737"
],
"x-ms-request-id": [
- "776f7706-7201-4b8a-a051-d912ab5b3050"
+ "0bce6618-144c-4233-893b-6e17828870d5"
],
"x-ms-correlation-request-id": [
- "776f7706-7201-4b8a-a051-d912ab5b3050"
+ "0bce6618-144c-4233-893b-6e17828870d5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223223Z:776f7706-7201-4b8a-a051-d912ab5b3050"
+ "NORTHCENTRALUS:20200519T191234Z:0bce6618-144c-4233-893b-6e17828870d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8634,7 +8634,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:23 GMT"
+ "Tue, 19 May 2020 19:12:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8643,23 +8643,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.7520173Z\",\r\n \"duration\": \"PT33.7499882S\",\r\n \"trackingId\": \"e4d5b9a4-4b37-4e7a-b4f3-e00ce9917025\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d019f12f-a588-4b81-aa36-9b544aa2604d"
+ "d274807c-acb4-4724-8b7f-fa86d7f37203"
],
"Accept-Language": [
"en-US"
@@ -8682,13 +8682,13 @@
"11735"
],
"x-ms-request-id": [
- "f9fa489d-41a8-44db-acfa-36f2c650e43a"
+ "7f3d349e-138e-4b85-bb86-5a3009a39263"
],
"x-ms-correlation-request-id": [
- "f9fa489d-41a8-44db-acfa-36f2c650e43a"
+ "7f3d349e-138e-4b85-bb86-5a3009a39263"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223223Z:f9fa489d-41a8-44db-acfa-36f2c650e43a"
+ "NORTHCENTRALUS:20200519T191234Z:7f3d349e-138e-4b85-bb86-5a3009a39263"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8697,7 +8697,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:23 GMT"
+ "Tue, 19 May 2020 19:12:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8706,23 +8706,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84be031b-2211-4ba7-b4a0-3bdef2f72973"
+ "75f6d97f-0fd5-4aa5-a9ed-81042158b60a"
],
"Accept-Language": [
"en-US"
@@ -8745,13 +8745,13 @@
"11733"
],
"x-ms-request-id": [
- "b94885d8-eea4-4be1-97a9-51da96d3ca3f"
+ "b6805f80-47ec-4b3d-a4a6-a855cf964200"
],
"x-ms-correlation-request-id": [
- "b94885d8-eea4-4be1-97a9-51da96d3ca3f"
+ "b6805f80-47ec-4b3d-a4a6-a855cf964200"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223224Z:b94885d8-eea4-4be1-97a9-51da96d3ca3f"
+ "NORTHCENTRALUS:20200519T191235Z:b6805f80-47ec-4b3d-a4a6-a855cf964200"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8760,7 +8760,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:24 GMT"
+ "Tue, 19 May 2020 19:12:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8769,23 +8769,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8f91ea1-c564-4b8d-88fe-7da781d79137"
+ "f7a75c83-9b10-4106-99f8-5de37d03c449"
],
"Accept-Language": [
"en-US"
@@ -8808,13 +8808,13 @@
"11731"
],
"x-ms-request-id": [
- "964e041a-46ff-4d02-bafc-e145ae36c4ca"
+ "c21d56c2-b5ad-48a5-b3bf-83c9d703c97f"
],
"x-ms-correlation-request-id": [
- "964e041a-46ff-4d02-bafc-e145ae36c4ca"
+ "c21d56c2-b5ad-48a5-b3bf-83c9d703c97f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223224Z:964e041a-46ff-4d02-bafc-e145ae36c4ca"
+ "NORTHCENTRALUS:20200519T191235Z:c21d56c2-b5ad-48a5-b3bf-83c9d703c97f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8823,7 +8823,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:24 GMT"
+ "Tue, 19 May 2020 19:12:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8832,23 +8832,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26d615b4-3dd3-43d6-81a0-129c872bd3ee"
+ "a09dc3cc-7b79-48aa-9b16-2003d724dbf4"
],
"Accept-Language": [
"en-US"
@@ -8871,13 +8871,13 @@
"11729"
],
"x-ms-request-id": [
- "8cbba6dd-143d-42a1-81ac-39a77d0117d4"
+ "6f7e5aa1-c8ce-4da0-a560-fbfca15ae77f"
],
"x-ms-correlation-request-id": [
- "8cbba6dd-143d-42a1-81ac-39a77d0117d4"
+ "6f7e5aa1-c8ce-4da0-a560-fbfca15ae77f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223225Z:8cbba6dd-143d-42a1-81ac-39a77d0117d4"
+ "NORTHCENTRALUS:20200519T191236Z:6f7e5aa1-c8ce-4da0-a560-fbfca15ae77f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8886,7 +8886,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:25 GMT"
+ "Tue, 19 May 2020 19:12:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8895,23 +8895,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b276a91-a5c6-461b-8351-dbd899e1c894"
+ "712cf400-80a0-4a74-b5c0-030b36d7eb72"
],
"Accept-Language": [
"en-US"
@@ -8934,13 +8934,13 @@
"11727"
],
"x-ms-request-id": [
- "4b3f7279-6a20-4a92-82ea-2bb6cad0b089"
+ "82e15bcf-0f06-4b5d-b005-517ed854f9da"
],
"x-ms-correlation-request-id": [
- "4b3f7279-6a20-4a92-82ea-2bb6cad0b089"
+ "82e15bcf-0f06-4b5d-b005-517ed854f9da"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223225Z:4b3f7279-6a20-4a92-82ea-2bb6cad0b089"
+ "NORTHCENTRALUS:20200519T191236Z:82e15bcf-0f06-4b5d-b005-517ed854f9da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8949,7 +8949,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:25 GMT"
+ "Tue, 19 May 2020 19:12:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8958,23 +8958,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eff5e0c1-5995-4186-b3b8-fa77f7480aaf"
+ "60782a38-9510-464e-ba50-91329c1fd6b6"
],
"Accept-Language": [
"en-US"
@@ -8997,13 +8997,13 @@
"11725"
],
"x-ms-request-id": [
- "b076b7d3-e607-4a3e-b1ef-e24e1b39854d"
+ "6e370db2-9005-49be-887f-67e70f1269b2"
],
"x-ms-correlation-request-id": [
- "b076b7d3-e607-4a3e-b1ef-e24e1b39854d"
+ "6e370db2-9005-49be-887f-67e70f1269b2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223225Z:b076b7d3-e607-4a3e-b1ef-e24e1b39854d"
+ "NORTHCENTRALUS:20200519T191237Z:6e370db2-9005-49be-887f-67e70f1269b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9012,7 +9012,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:25 GMT"
+ "Tue, 19 May 2020 19:12:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9021,23 +9021,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4eee028-dedc-442c-bfc8-07a885bfaaff"
+ "8d01c475-7ff7-429c-ad76-2eaf8d43a39a"
],
"Accept-Language": [
"en-US"
@@ -9060,13 +9060,13 @@
"11723"
],
"x-ms-request-id": [
- "a41a2ab4-564a-4591-97f2-5a5022a27d85"
+ "cec56955-66fc-4123-9c65-79f28d35be51"
],
"x-ms-correlation-request-id": [
- "a41a2ab4-564a-4591-97f2-5a5022a27d85"
+ "cec56955-66fc-4123-9c65-79f28d35be51"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223226Z:a41a2ab4-564a-4591-97f2-5a5022a27d85"
+ "NORTHCENTRALUS:20200519T191237Z:cec56955-66fc-4123-9c65-79f28d35be51"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9075,7 +9075,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:26 GMT"
+ "Tue, 19 May 2020 19:12:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9084,23 +9084,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "193641ea-33b5-4efa-ac0b-7b21f655eb5d"
+ "b707f99c-aafe-4891-a26f-f70090df3d2b"
],
"Accept-Language": [
"en-US"
@@ -9123,13 +9123,13 @@
"11721"
],
"x-ms-request-id": [
- "5d73a81f-5948-454d-b3f7-076d6b5c305b"
+ "54aadfc7-b1b2-453b-a8d2-5447baa76843"
],
"x-ms-correlation-request-id": [
- "5d73a81f-5948-454d-b3f7-076d6b5c305b"
+ "54aadfc7-b1b2-453b-a8d2-5447baa76843"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223226Z:5d73a81f-5948-454d-b3f7-076d6b5c305b"
+ "NORTHCENTRALUS:20200519T191237Z:54aadfc7-b1b2-453b-a8d2-5447baa76843"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9138,7 +9138,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:26 GMT"
+ "Tue, 19 May 2020 19:12:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9147,23 +9147,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.844835Z\",\r\n \"duration\": \"PT47.7887124S\",\r\n \"trackingId\": \"afeec972-8530-4fa4-ab54-ccf04fe0f913\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "607cf883-41d0-4029-a4e4-3d0964c1398a"
+ "40638555-9eb3-49c9-be7f-d26eb41bf9b7"
],
"Accept-Language": [
"en-US"
@@ -9186,13 +9186,13 @@
"11719"
],
"x-ms-request-id": [
- "2bd46e23-0250-4ef9-bdb1-b6aa262af975"
+ "056d535f-9571-463a-b716-e5630046b032"
],
"x-ms-correlation-request-id": [
- "2bd46e23-0250-4ef9-bdb1-b6aa262af975"
+ "056d535f-9571-463a-b716-e5630046b032"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223227Z:2bd46e23-0250-4ef9-bdb1-b6aa262af975"
+ "NORTHCENTRALUS:20200519T191238Z:056d535f-9571-463a-b716-e5630046b032"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9201,7 +9201,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:27 GMT"
+ "Tue, 19 May 2020 19:12:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9216,17 +9216,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c1558de-9eb7-4238-94d9-00fd8b9e30b8"
+ "2b238c29-c89d-45cf-be43-d882b6cb3df2"
],
"Accept-Language": [
"en-US"
@@ -9249,13 +9249,13 @@
"11717"
],
"x-ms-request-id": [
- "572b7aa5-e613-4fed-a88f-8af61a73f3ba"
+ "bbfb1cff-0a30-4ebe-8e67-f97d506a0916"
],
"x-ms-correlation-request-id": [
- "572b7aa5-e613-4fed-a88f-8af61a73f3ba"
+ "bbfb1cff-0a30-4ebe-8e67-f97d506a0916"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223227Z:572b7aa5-e613-4fed-a88f-8af61a73f3ba"
+ "NORTHCENTRALUS:20200519T191238Z:bbfb1cff-0a30-4ebe-8e67-f97d506a0916"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9264,7 +9264,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:27 GMT"
+ "Tue, 19 May 2020 19:12:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9279,17 +9279,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de7e55d4-d180-49f2-b9c9-6707a4f61415"
+ "975f1b9c-e27e-48c2-9681-07800a064c19"
],
"Accept-Language": [
"en-US"
@@ -9312,13 +9312,13 @@
"11715"
],
"x-ms-request-id": [
- "dbf1485f-5aa8-4706-8f33-e897ba5efb87"
+ "54d9f6eb-a7e2-40e5-bf05-3c7629329676"
],
"x-ms-correlation-request-id": [
- "dbf1485f-5aa8-4706-8f33-e897ba5efb87"
+ "54d9f6eb-a7e2-40e5-bf05-3c7629329676"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223228Z:dbf1485f-5aa8-4706-8f33-e897ba5efb87"
+ "NORTHCENTRALUS:20200519T191239Z:54d9f6eb-a7e2-40e5-bf05-3c7629329676"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9327,7 +9327,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:28 GMT"
+ "Tue, 19 May 2020 19:12:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9342,17 +9342,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36976682-509c-49a9-9333-02751fa88ccd"
+ "ffc6ce3b-9cbf-4c32-bd38-9f944b49c4ee"
],
"Accept-Language": [
"en-US"
@@ -9375,13 +9375,13 @@
"11713"
],
"x-ms-request-id": [
- "46df2a31-a600-44c4-99f7-fe9cf60bd88a"
+ "6b23ee85-81c8-41bb-af0a-cb14407b979d"
],
"x-ms-correlation-request-id": [
- "46df2a31-a600-44c4-99f7-fe9cf60bd88a"
+ "6b23ee85-81c8-41bb-af0a-cb14407b979d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223228Z:46df2a31-a600-44c4-99f7-fe9cf60bd88a"
+ "NORTHCENTRALUS:20200519T191239Z:6b23ee85-81c8-41bb-af0a-cb14407b979d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9390,7 +9390,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:28 GMT"
+ "Tue, 19 May 2020 19:12:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9405,17 +9405,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae8ecc22-224f-4bba-b5aa-94cb3e9cb8b9"
+ "9caabd4f-bec7-46a6-a260-d74bd97f444f"
],
"Accept-Language": [
"en-US"
@@ -9438,13 +9438,13 @@
"11711"
],
"x-ms-request-id": [
- "be278014-c228-4efa-8a56-2b66b8fee6ac"
+ "af778df7-2b2b-411b-974e-d82b996cb692"
],
"x-ms-correlation-request-id": [
- "be278014-c228-4efa-8a56-2b66b8fee6ac"
+ "af778df7-2b2b-411b-974e-d82b996cb692"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223229Z:be278014-c228-4efa-8a56-2b66b8fee6ac"
+ "NORTHCENTRALUS:20200519T191239Z:af778df7-2b2b-411b-974e-d82b996cb692"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9453,7 +9453,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:29 GMT"
+ "Tue, 19 May 2020 19:12:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9468,17 +9468,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9779d452-888f-4532-aa75-6acae9f65bbb"
+ "a41d260f-9b2f-490c-b2f1-15733bb4bcdf"
],
"Accept-Language": [
"en-US"
@@ -9501,13 +9501,13 @@
"11709"
],
"x-ms-request-id": [
- "a824fe80-f6c8-4936-bfdd-9a8c3f2931bb"
+ "98d0c769-a44b-4b07-aaf0-803b6592906a"
],
"x-ms-correlation-request-id": [
- "a824fe80-f6c8-4936-bfdd-9a8c3f2931bb"
+ "98d0c769-a44b-4b07-aaf0-803b6592906a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223229Z:a824fe80-f6c8-4936-bfdd-9a8c3f2931bb"
+ "NORTHCENTRALUS:20200519T191240Z:98d0c769-a44b-4b07-aaf0-803b6592906a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9516,7 +9516,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:29 GMT"
+ "Tue, 19 May 2020 19:12:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9531,17 +9531,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6ebd00d-2aab-4ea4-a06e-7141555a634b"
+ "b57ced8b-0a14-4891-b038-630edd84341a"
],
"Accept-Language": [
"en-US"
@@ -9564,13 +9564,13 @@
"11707"
],
"x-ms-request-id": [
- "70029a54-97f9-4b1e-880d-0baaee1a1dc3"
+ "273249ea-8581-40d8-89ed-a35add5c9973"
],
"x-ms-correlation-request-id": [
- "70029a54-97f9-4b1e-880d-0baaee1a1dc3"
+ "273249ea-8581-40d8-89ed-a35add5c9973"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223230Z:70029a54-97f9-4b1e-880d-0baaee1a1dc3"
+ "NORTHCENTRALUS:20200519T191240Z:273249ea-8581-40d8-89ed-a35add5c9973"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9579,7 +9579,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:30 GMT"
+ "Tue, 19 May 2020 19:12:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9594,17 +9594,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ba932e9-2137-416a-90ee-78eede8176d5"
+ "159fa1d6-6e84-4a2a-b285-a4f5f45b3a8d"
],
"Accept-Language": [
"en-US"
@@ -9627,13 +9627,13 @@
"11705"
],
"x-ms-request-id": [
- "b56e398f-35cc-4681-be58-8016740df215"
+ "c634f7a8-ecf7-40a0-9276-f62e0846aa72"
],
"x-ms-correlation-request-id": [
- "b56e398f-35cc-4681-be58-8016740df215"
+ "c634f7a8-ecf7-40a0-9276-f62e0846aa72"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223230Z:b56e398f-35cc-4681-be58-8016740df215"
+ "NORTHCENTRALUS:20200519T191241Z:c634f7a8-ecf7-40a0-9276-f62e0846aa72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9642,7 +9642,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:30 GMT"
+ "Tue, 19 May 2020 19:12:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9657,17 +9657,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.7691927Z\",\r\n \"duration\": \"PT44.7671636S\",\r\n \"trackingId\": \"51667ce2-68ba-48cd-82d7-2ba716e38cfe\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1274273a-519d-4625-9f07-f08bdc1e16bd"
+ "68f6385c-d47a-430f-8d39-b29a95de563e"
],
"Accept-Language": [
"en-US"
@@ -9690,13 +9690,13 @@
"11703"
],
"x-ms-request-id": [
- "5b523818-9aea-4431-bbdd-a8f2d78a9677"
+ "5ae9c7d3-00d6-4931-8e15-d9a027091252"
],
"x-ms-correlation-request-id": [
- "5b523818-9aea-4431-bbdd-a8f2d78a9677"
+ "5ae9c7d3-00d6-4931-8e15-d9a027091252"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223231Z:5b523818-9aea-4431-bbdd-a8f2d78a9677"
+ "NORTHCENTRALUS:20200519T191241Z:5ae9c7d3-00d6-4931-8e15-d9a027091252"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9705,7 +9705,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:30 GMT"
+ "Tue, 19 May 2020 19:12:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9720,17 +9720,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3581f347-50b0-4fe8-9f6a-b3027f1c5db4"
+ "90108908-0aa5-4de6-8180-e1cbb7f6de9b"
],
"Accept-Language": [
"en-US"
@@ -9753,13 +9753,13 @@
"11701"
],
"x-ms-request-id": [
- "c3e8e8ca-9cd5-4fd9-a384-4ce54423abaa"
+ "dbe4761b-d42c-4cea-bf47-4f425df69ecb"
],
"x-ms-correlation-request-id": [
- "c3e8e8ca-9cd5-4fd9-a384-4ce54423abaa"
+ "dbe4761b-d42c-4cea-bf47-4f425df69ecb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223231Z:c3e8e8ca-9cd5-4fd9-a384-4ce54423abaa"
+ "NORTHCENTRALUS:20200519T191241Z:dbe4761b-d42c-4cea-bf47-4f425df69ecb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9768,7 +9768,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:31 GMT"
+ "Tue, 19 May 2020 19:12:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9783,17 +9783,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2dacf059-659e-4cc9-aa40-4a101531d339"
+ "3d219d54-d7fe-430b-abbc-022fe5a65a3e"
],
"Accept-Language": [
"en-US"
@@ -9816,13 +9816,13 @@
"11699"
],
"x-ms-request-id": [
- "d4d5935e-a41c-4876-89c9-93c506d5dc3d"
+ "3b5c3f2c-741b-4987-9faf-3e2a7345f0de"
],
"x-ms-correlation-request-id": [
- "d4d5935e-a41c-4876-89c9-93c506d5dc3d"
+ "3b5c3f2c-741b-4987-9faf-3e2a7345f0de"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223231Z:d4d5935e-a41c-4876-89c9-93c506d5dc3d"
+ "NORTHCENTRALUS:20200519T191242Z:3b5c3f2c-741b-4987-9faf-3e2a7345f0de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9831,7 +9831,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:31 GMT"
+ "Tue, 19 May 2020 19:12:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9846,17 +9846,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58a8a857-a067-45be-9d77-5e64697badb9"
+ "ae667580-ab89-43f8-b9e6-48c3acad9039"
],
"Accept-Language": [
"en-US"
@@ -9879,13 +9879,13 @@
"11697"
],
"x-ms-request-id": [
- "de25290d-bfec-4321-9ea6-150cb9682f43"
+ "da3b1d8d-9dfa-4c41-a16c-3796a4b0d55c"
],
"x-ms-correlation-request-id": [
- "de25290d-bfec-4321-9ea6-150cb9682f43"
+ "da3b1d8d-9dfa-4c41-a16c-3796a4b0d55c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223232Z:de25290d-bfec-4321-9ea6-150cb9682f43"
+ "NORTHCENTRALUS:20200519T191242Z:da3b1d8d-9dfa-4c41-a16c-3796a4b0d55c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9894,7 +9894,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:32 GMT"
+ "Tue, 19 May 2020 19:12:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9909,17 +9909,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9cab5e26-b87b-4668-b95f-42984cf7a777"
+ "6a6f19b6-6ad9-4096-adcf-55981190a235"
],
"Accept-Language": [
"en-US"
@@ -9942,13 +9942,13 @@
"11695"
],
"x-ms-request-id": [
- "d81cb84e-72f7-4344-aaf6-59f3f3b542a0"
+ "0a6e2356-5177-4eb5-b17f-9a20f3ca7de0"
],
"x-ms-correlation-request-id": [
- "d81cb84e-72f7-4344-aaf6-59f3f3b542a0"
+ "0a6e2356-5177-4eb5-b17f-9a20f3ca7de0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223232Z:d81cb84e-72f7-4344-aaf6-59f3f3b542a0"
+ "NORTHCENTRALUS:20200519T191243Z:0a6e2356-5177-4eb5-b17f-9a20f3ca7de0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9957,7 +9957,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:32 GMT"
+ "Tue, 19 May 2020 19:12:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9972,17 +9972,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b8f2062-c111-41ef-afa0-b388ab2b344b"
+ "111c33ee-33c5-4f1b-9452-e754a8a05617"
],
"Accept-Language": [
"en-US"
@@ -10005,13 +10005,13 @@
"11693"
],
"x-ms-request-id": [
- "1141cf60-a873-42dd-966e-3201cb6ce185"
+ "4b505bf3-f933-47ba-bccf-0abd4c5a5568"
],
"x-ms-correlation-request-id": [
- "1141cf60-a873-42dd-966e-3201cb6ce185"
+ "4b505bf3-f933-47ba-bccf-0abd4c5a5568"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223233Z:1141cf60-a873-42dd-966e-3201cb6ce185"
+ "NORTHCENTRALUS:20200519T191243Z:4b505bf3-f933-47ba-bccf-0abd4c5a5568"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10020,7 +10020,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:32 GMT"
+ "Tue, 19 May 2020 19:12:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10035,17 +10035,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18efc7de-90f3-4385-a0ad-70925818a0de"
+ "c96513a0-a181-4459-80d6-2cb1c96d1349"
],
"Accept-Language": [
"en-US"
@@ -10068,13 +10068,13 @@
"11691"
],
"x-ms-request-id": [
- "be632fe1-9496-4a60-82fa-1126e521c6a0"
+ "e674b316-cdab-46be-8391-d32184e30c26"
],
"x-ms-correlation-request-id": [
- "be632fe1-9496-4a60-82fa-1126e521c6a0"
+ "e674b316-cdab-46be-8391-d32184e30c26"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223233Z:be632fe1-9496-4a60-82fa-1126e521c6a0"
+ "NORTHCENTRALUS:20200519T191243Z:e674b316-cdab-46be-8391-d32184e30c26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10083,7 +10083,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:33 GMT"
+ "Tue, 19 May 2020 19:12:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10098,17 +10098,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2611b393-65b8-4e35-8147-ee254f080aae"
+ "10a4b02f-8747-4ba3-a26c-e51e3a58c874"
],
"Accept-Language": [
"en-US"
@@ -10131,13 +10131,13 @@
"11689"
],
"x-ms-request-id": [
- "dbf0965d-90f0-4e09-a02b-8f6fc2bb310c"
+ "ab13c41d-2855-4ad9-95e6-38372b23dd19"
],
"x-ms-correlation-request-id": [
- "dbf0965d-90f0-4e09-a02b-8f6fc2bb310c"
+ "ab13c41d-2855-4ad9-95e6-38372b23dd19"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223233Z:dbf0965d-90f0-4e09-a02b-8f6fc2bb310c"
+ "NORTHCENTRALUS:20200519T191244Z:ab13c41d-2855-4ad9-95e6-38372b23dd19"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10146,7 +10146,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:33 GMT"
+ "Tue, 19 May 2020 19:12:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10161,17 +10161,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee06bd38-24c0-4114-88d9-2d634cf9e769"
+ "4fa5cc91-a876-48be-b345-b7700f8972a5"
],
"Accept-Language": [
"en-US"
@@ -10194,13 +10194,13 @@
"11687"
],
"x-ms-request-id": [
- "ac26f10a-2fe9-4055-a29b-3dad765d0503"
+ "838816c1-332b-4422-8155-0025f082914b"
],
"x-ms-correlation-request-id": [
- "ac26f10a-2fe9-4055-a29b-3dad765d0503"
+ "838816c1-332b-4422-8155-0025f082914b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223234Z:ac26f10a-2fe9-4055-a29b-3dad765d0503"
+ "NORTHCENTRALUS:20200519T191244Z:838816c1-332b-4422-8155-0025f082914b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10209,7 +10209,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:34 GMT"
+ "Tue, 19 May 2020 19:12:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10224,17 +10224,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5910d72f-90b1-43e7-9133-3c4f4b5c550a"
+ "cbba13ec-4717-446a-9011-87b2fc92417b"
],
"Accept-Language": [
"en-US"
@@ -10257,13 +10257,13 @@
"11685"
],
"x-ms-request-id": [
- "8accbcd2-206c-49ce-901b-0dcf63f0b8d0"
+ "01b4365b-108b-4e78-bdae-5fb9f03cd10d"
],
"x-ms-correlation-request-id": [
- "8accbcd2-206c-49ce-901b-0dcf63f0b8d0"
+ "01b4365b-108b-4e78-bdae-5fb9f03cd10d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223234Z:8accbcd2-206c-49ce-901b-0dcf63f0b8d0"
+ "NORTHCENTRALUS:20200519T191245Z:01b4365b-108b-4e78-bdae-5fb9f03cd10d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10272,7 +10272,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:34 GMT"
+ "Tue, 19 May 2020 19:12:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10287,17 +10287,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "823121c5-5243-4d60-b4af-3f83e3ad8685"
+ "138c6131-53c5-4e25-a882-8d10c3627ca5"
],
"Accept-Language": [
"en-US"
@@ -10320,13 +10320,13 @@
"11683"
],
"x-ms-request-id": [
- "070bf711-8196-414d-bca0-251b7e59ba45"
+ "3a695f4b-dc92-408f-817a-43dcd319a5fb"
],
"x-ms-correlation-request-id": [
- "070bf711-8196-414d-bca0-251b7e59ba45"
+ "3a695f4b-dc92-408f-817a-43dcd319a5fb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223235Z:070bf711-8196-414d-bca0-251b7e59ba45"
+ "NORTHCENTRALUS:20200519T191245Z:3a695f4b-dc92-408f-817a-43dcd319a5fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10335,7 +10335,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:35 GMT"
+ "Tue, 19 May 2020 19:12:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10350,17 +10350,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3422a97-4d8d-4693-8377-6e75cdd1c7e7"
+ "07c19a7c-5212-4ba5-9e02-a0f34c2568b3"
],
"Accept-Language": [
"en-US"
@@ -10383,13 +10383,13 @@
"11681"
],
"x-ms-request-id": [
- "4dbbdb65-bafa-4fc9-b1a0-7d466cc27e24"
+ "5039f5c1-7c90-4e09-8ad5-bfe10683e256"
],
"x-ms-correlation-request-id": [
- "4dbbdb65-bafa-4fc9-b1a0-7d466cc27e24"
+ "5039f5c1-7c90-4e09-8ad5-bfe10683e256"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223235Z:4dbbdb65-bafa-4fc9-b1a0-7d466cc27e24"
+ "NORTHCENTRALUS:20200519T191246Z:5039f5c1-7c90-4e09-8ad5-bfe10683e256"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10398,7 +10398,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:35 GMT"
+ "Tue, 19 May 2020 19:12:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10413,17 +10413,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad2e1c1e-d1ae-43f2-9f01-92e8ce680c10"
+ "ae1b5f3a-baa1-454f-bed5-885670ac65b5"
],
"Accept-Language": [
"en-US"
@@ -10446,13 +10446,13 @@
"11679"
],
"x-ms-request-id": [
- "9a5f5afd-bceb-4f78-bc88-720515974de9"
+ "5ccd7f95-0085-473b-9173-28f616b56b24"
],
"x-ms-correlation-request-id": [
- "9a5f5afd-bceb-4f78-bc88-720515974de9"
+ "5ccd7f95-0085-473b-9173-28f616b56b24"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223236Z:9a5f5afd-bceb-4f78-bc88-720515974de9"
+ "NORTHCENTRALUS:20200519T191246Z:5ccd7f95-0085-473b-9173-28f616b56b24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10461,7 +10461,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:35 GMT"
+ "Tue, 19 May 2020 19:12:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10476,17 +10476,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8067d297-0363-40d0-b6e9-97f9c0a826ac"
+ "0200de1f-3a92-4f00-9c34-2a0d18e481ea"
],
"Accept-Language": [
"en-US"
@@ -10509,13 +10509,13 @@
"11677"
],
"x-ms-request-id": [
- "c03b96cd-779f-4545-9b05-e6c3d65feb18"
+ "0e84c291-be8a-48fc-98fb-fa422ec6abcf"
],
"x-ms-correlation-request-id": [
- "c03b96cd-779f-4545-9b05-e6c3d65feb18"
+ "0e84c291-be8a-48fc-98fb-fa422ec6abcf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223236Z:c03b96cd-779f-4545-9b05-e6c3d65feb18"
+ "NORTHCENTRALUS:20200519T191246Z:0e84c291-be8a-48fc-98fb-fa422ec6abcf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10524,7 +10524,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:36 GMT"
+ "Tue, 19 May 2020 19:12:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10539,17 +10539,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e4e964b-659d-47bb-b102-a371b8fabe54"
+ "7c516c17-5e6b-4c90-b5fe-a85fddf79859"
],
"Accept-Language": [
"en-US"
@@ -10572,13 +10572,13 @@
"11675"
],
"x-ms-request-id": [
- "c77d087b-1e78-47db-b381-072b626ec432"
+ "3b7c3dfa-9f7b-4a4a-9e92-d3a97f6a71aa"
],
"x-ms-correlation-request-id": [
- "c77d087b-1e78-47db-b381-072b626ec432"
+ "3b7c3dfa-9f7b-4a4a-9e92-d3a97f6a71aa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223236Z:c77d087b-1e78-47db-b381-072b626ec432"
+ "NORTHCENTRALUS:20200519T191247Z:3b7c3dfa-9f7b-4a4a-9e92-d3a97f6a71aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10587,7 +10587,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:36 GMT"
+ "Tue, 19 May 2020 19:12:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10602,17 +10602,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "191bb36d-ec45-4c3a-b7f0-650b2227c08b"
+ "a3b2086a-120b-49be-8408-bcd9ca35b16b"
],
"Accept-Language": [
"en-US"
@@ -10635,13 +10635,13 @@
"11673"
],
"x-ms-request-id": [
- "58a21690-fe81-4aad-95e7-345e0ce9e763"
+ "7bb30f12-da8d-4e27-82e5-510a081c6f10"
],
"x-ms-correlation-request-id": [
- "58a21690-fe81-4aad-95e7-345e0ce9e763"
+ "7bb30f12-da8d-4e27-82e5-510a081c6f10"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223237Z:58a21690-fe81-4aad-95e7-345e0ce9e763"
+ "NORTHCENTRALUS:20200519T191247Z:7bb30f12-da8d-4e27-82e5-510a081c6f10"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10650,7 +10650,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:37 GMT"
+ "Tue, 19 May 2020 19:12:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10665,17 +10665,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62b59868-4fa3-4af1-a8c8-2bff8aaf741e"
+ "9c82f922-55b9-4777-b15a-d6b7fda26ace"
],
"Accept-Language": [
"en-US"
@@ -10698,13 +10698,13 @@
"11671"
],
"x-ms-request-id": [
- "a156f3c7-b8c1-43ba-823a-90a5e4468b24"
+ "81879a81-ecf4-48fa-a9ff-9eda1273246b"
],
"x-ms-correlation-request-id": [
- "a156f3c7-b8c1-43ba-823a-90a5e4468b24"
+ "81879a81-ecf4-48fa-a9ff-9eda1273246b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223237Z:a156f3c7-b8c1-43ba-823a-90a5e4468b24"
+ "NORTHCENTRALUS:20200519T191248Z:81879a81-ecf4-48fa-a9ff-9eda1273246b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10713,7 +10713,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:37 GMT"
+ "Tue, 19 May 2020 19:12:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10728,17 +10728,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff7642d9-5d7a-4f15-a53a-ce82e29b5cee"
+ "6a717493-51c1-457d-88fa-7f5ac9b747df"
],
"Accept-Language": [
"en-US"
@@ -10761,13 +10761,13 @@
"11669"
],
"x-ms-request-id": [
- "b25d3256-353c-4128-ae84-461dcebe0cda"
+ "4b4c7ece-e161-44e3-95a6-d7a436a6d6c7"
],
"x-ms-correlation-request-id": [
- "b25d3256-353c-4128-ae84-461dcebe0cda"
+ "4b4c7ece-e161-44e3-95a6-d7a436a6d6c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223238Z:b25d3256-353c-4128-ae84-461dcebe0cda"
+ "NORTHCENTRALUS:20200519T191248Z:4b4c7ece-e161-44e3-95a6-d7a436a6d6c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10776,7 +10776,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:37 GMT"
+ "Tue, 19 May 2020 19:12:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10791,17 +10791,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.8479847Z\",\r\n \"duration\": \"PT57.7918621S\",\r\n \"trackingId\": \"0f26d34a-80de-4cd0-91c0-b35ada6e45e0\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/deployments/ps2204/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9kZXBsb3ltZW50cy9wczIyMDQvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90cd0ac2-4aff-4799-9422-24a34b64e6d5"
+ "2a2a7c08-5604-4951-86e7-1b072dca1a5b"
],
"Accept-Language": [
"en-US"
@@ -10824,13 +10824,13 @@
"11667"
],
"x-ms-request-id": [
- "f9057bbe-1424-4b6f-b8cf-4f3a024e1d04"
+ "3dbb0643-235a-48fb-886f-c9da63fe476d"
],
"x-ms-correlation-request-id": [
- "f9057bbe-1424-4b6f-b8cf-4f3a024e1d04"
+ "3dbb0643-235a-48fb-886f-c9da63fe476d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223238Z:f9057bbe-1424-4b6f-b8cf-4f3a024e1d04"
+ "NORTHCENTRALUS:20200519T191249Z:3dbb0643-235a-48fb-886f-c9da63fe476d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10839,7 +10839,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:38 GMT"
+ "Tue, 19 May 2020 19:12:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10848,23 +10848,23 @@
"-1"
],
"Content-Length": [
- "1285"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/2C4D96ADE6F55DB6\",\r\n \"operationId\": \"2C4D96ADE6F55DB6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:32:38.1705184Z\",\r\n \"duration\": \"PT1M9.1143958S\",\r\n \"trackingId\": \"cdcdef18-6b63-437b-91ed-92dfa9c75cc6\",\r\n \"serviceRequestId\": \"91c714b1-de63-4120-a070-c90d4628b571\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204/operations/08586121977984004440\",\r\n \"operationId\": \"08586121977984004440\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:32:38.2376786Z\",\r\n \"duration\": \"PT0.036338S\",\r\n \"trackingId\": \"a602eb4f-24a2-4344-bee5-2ddc53691953\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98af0527-ac98-4e2f-babc-f8ac0e7f1e31"
+ "f66866c5-903b-430b-a1ad-723954ed6039"
],
"Accept-Language": [
"en-US"
@@ -10883,20 +10883,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11665"
],
"x-ms-request-id": [
- "caa9fb0d-f746-4f3e-817c-2552464501b1"
+ "b0aff442-3df0-4575-9e94-f867a7f0f7b3"
],
"x-ms-correlation-request-id": [
- "caa9fb0d-f746-4f3e-817c-2552464501b1"
+ "b0aff442-3df0-4575-9e94-f867a7f0f7b3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223128Z:caa9fb0d-f746-4f3e-817c-2552464501b1"
+ "NORTHCENTRALUS:20200519T191249Z:b0aff442-3df0-4575-9e94-f867a7f0f7b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10905,7 +10902,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:28 GMT"
+ "Tue, 19 May 2020 19:12:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10914,20 +10911,23 @@
"-1"
],
"Content-Length": [
- "1425"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:31:27.7457749Z\",\r\n \"duration\": \"PT0.6685928S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df0b376c-d23b-49d3-8af3-e14263f1eb06"
+ "5f39f42e-91b1-4b2d-9d66-9d4b439aa520"
],
"Accept-Language": [
"en-US"
@@ -10946,20 +10946,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11663"
],
"x-ms-request-id": [
- "ef573d91-1d4f-44b6-9031-7980500b562f"
+ "43714225-2693-4e78-95d1-5d44a2d0ef6b"
],
"x-ms-correlation-request-id": [
- "ef573d91-1d4f-44b6-9031-7980500b562f"
+ "43714225-2693-4e78-95d1-5d44a2d0ef6b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223129Z:ef573d91-1d4f-44b6-9031-7980500b562f"
+ "NORTHCENTRALUS:20200519T191249Z:43714225-2693-4e78-95d1-5d44a2d0ef6b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10968,7 +10965,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:28 GMT"
+ "Tue, 19 May 2020 19:12:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10977,20 +10974,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23ae8e8a-8a64-4418-9cff-2d7496f0a12b"
+ "dab2f3c1-181c-4058-9066-2ed80bddbb0c"
],
"Accept-Language": [
"en-US"
@@ -11009,20 +11009,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11661"
],
"x-ms-request-id": [
- "e78e5eea-0f9d-40ee-ad76-d2bc37cb7bc1"
+ "1c060f48-5ee5-4cfc-b962-773632a44b63"
],
"x-ms-correlation-request-id": [
- "e78e5eea-0f9d-40ee-ad76-d2bc37cb7bc1"
+ "1c060f48-5ee5-4cfc-b962-773632a44b63"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223129Z:e78e5eea-0f9d-40ee-ad76-d2bc37cb7bc1"
+ "NORTHCENTRALUS:20200519T191250Z:1c060f48-5ee5-4cfc-b962-773632a44b63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11031,7 +11028,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:29 GMT"
+ "Tue, 19 May 2020 19:12:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11040,20 +11037,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "136d0d66-43c2-45da-9beb-9a2f84aaaf13"
+ "5741e91d-dbf6-4f29-a637-1d51b929a204"
],
"Accept-Language": [
"en-US"
@@ -11072,20 +11072,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11659"
],
"x-ms-request-id": [
- "0869ab83-403f-472c-a0bb-31e19813e232"
+ "2f9bbcbb-be1f-4a3f-ab64-c62718bdb64e"
],
"x-ms-correlation-request-id": [
- "0869ab83-403f-472c-a0bb-31e19813e232"
+ "2f9bbcbb-be1f-4a3f-ab64-c62718bdb64e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223129Z:0869ab83-403f-472c-a0bb-31e19813e232"
+ "NORTHCENTRALUS:20200519T191250Z:2f9bbcbb-be1f-4a3f-ab64-c62718bdb64e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11094,7 +11091,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:29 GMT"
+ "Tue, 19 May 2020 19:12:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11103,20 +11100,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98b697d2-d2c3-4fe6-a991-5668771f45c8"
+ "626411ab-89b0-4831-9933-f7f6ba28cc6d"
],
"Accept-Language": [
"en-US"
@@ -11135,20 +11135,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11657"
],
"x-ms-request-id": [
- "d3538087-3ac2-475e-9381-edf8d9c5041a"
+ "a0ed3164-664e-44fe-8777-b314f1f41aeb"
],
"x-ms-correlation-request-id": [
- "d3538087-3ac2-475e-9381-edf8d9c5041a"
+ "a0ed3164-664e-44fe-8777-b314f1f41aeb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223130Z:d3538087-3ac2-475e-9381-edf8d9c5041a"
+ "NORTHCENTRALUS:20200519T191251Z:a0ed3164-664e-44fe-8777-b314f1f41aeb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11157,7 +11154,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:30 GMT"
+ "Tue, 19 May 2020 19:12:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11166,20 +11163,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32a85294-2ace-46d6-8145-3e0849ae46b4"
+ "3105c843-abf1-4b8c-bf4a-f660f8bd441c"
],
"Accept-Language": [
"en-US"
@@ -11198,20 +11198,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11655"
],
"x-ms-request-id": [
- "418cedd6-c0e8-4e2e-9b88-7cb17e5ee791"
+ "fd33b7f6-0c49-42af-955a-3e838608c788"
],
"x-ms-correlation-request-id": [
- "418cedd6-c0e8-4e2e-9b88-7cb17e5ee791"
+ "fd33b7f6-0c49-42af-955a-3e838608c788"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223130Z:418cedd6-c0e8-4e2e-9b88-7cb17e5ee791"
+ "NORTHCENTRALUS:20200519T191251Z:fd33b7f6-0c49-42af-955a-3e838608c788"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11220,7 +11217,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:30 GMT"
+ "Tue, 19 May 2020 19:12:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11229,20 +11226,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "429042b2-ce37-4a79-95fb-c10fe2bc9964"
+ "8be1206a-9a80-41dd-a825-46a073cedde9"
],
"Accept-Language": [
"en-US"
@@ -11261,20 +11261,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11653"
],
"x-ms-request-id": [
- "538d317f-277f-4417-8269-171c0f187a29"
+ "74cee139-4c0e-456d-a5b0-cd46ef97843d"
],
"x-ms-correlation-request-id": [
- "538d317f-277f-4417-8269-171c0f187a29"
+ "74cee139-4c0e-456d-a5b0-cd46ef97843d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223130Z:538d317f-277f-4417-8269-171c0f187a29"
+ "NORTHCENTRALUS:20200519T191251Z:74cee139-4c0e-456d-a5b0-cd46ef97843d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11283,7 +11280,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:30 GMT"
+ "Tue, 19 May 2020 19:12:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11292,20 +11289,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90ced559-84ed-47e1-ab15-2b515531d897"
+ "abb9f5fd-d2ae-4950-a895-57b62032b2e6"
],
"Accept-Language": [
"en-US"
@@ -11324,20 +11324,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11651"
],
"x-ms-request-id": [
- "ab8ad714-bde1-4fe2-a3de-8adab291407a"
+ "1bf1c72c-7222-47f3-a140-61b51441baae"
],
"x-ms-correlation-request-id": [
- "ab8ad714-bde1-4fe2-a3de-8adab291407a"
+ "1bf1c72c-7222-47f3-a140-61b51441baae"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223131Z:ab8ad714-bde1-4fe2-a3de-8adab291407a"
+ "NORTHCENTRALUS:20200519T191252Z:1bf1c72c-7222-47f3-a140-61b51441baae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11346,7 +11343,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:31 GMT"
+ "Tue, 19 May 2020 19:12:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11355,20 +11352,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "80b4d868-651b-4a2a-a751-e76e0300fb91"
+ "5345c451-db3a-4bda-8501-e32f540d26da"
],
"Accept-Language": [
"en-US"
@@ -11387,20 +11387,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11649"
],
"x-ms-request-id": [
- "9528c471-777d-4f8c-bdad-46cfe0df43b5"
+ "f049f07f-cc33-49ad-94a5-d2bb7bb66d4d"
],
"x-ms-correlation-request-id": [
- "9528c471-777d-4f8c-bdad-46cfe0df43b5"
+ "f049f07f-cc33-49ad-94a5-d2bb7bb66d4d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223131Z:9528c471-777d-4f8c-bdad-46cfe0df43b5"
+ "NORTHCENTRALUS:20200519T191252Z:f049f07f-cc33-49ad-94a5-d2bb7bb66d4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11409,7 +11406,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:31 GMT"
+ "Tue, 19 May 2020 19:12:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11418,20 +11415,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a1c797d-9135-4034-b6f8-61006ccaf51d"
+ "69737f7e-04b3-40e4-ad0d-eb5851e21213"
],
"Accept-Language": [
"en-US"
@@ -11450,20 +11450,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11647"
],
"x-ms-request-id": [
- "0ff7f864-837e-4d34-9c3c-1c2dda71ebb8"
+ "b3785620-b588-4c79-9845-c9fda9e02b99"
],
"x-ms-correlation-request-id": [
- "0ff7f864-837e-4d34-9c3c-1c2dda71ebb8"
+ "b3785620-b588-4c79-9845-c9fda9e02b99"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223132Z:0ff7f864-837e-4d34-9c3c-1c2dda71ebb8"
+ "NORTHCENTRALUS:20200519T191253Z:b3785620-b588-4c79-9845-c9fda9e02b99"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11472,7 +11469,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:31 GMT"
+ "Tue, 19 May 2020 19:12:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11481,20 +11478,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0fc122b-4caa-4111-b8c8-0ca0032e9897"
+ "447d0377-885f-4473-b1e0-200386f059bb"
],
"Accept-Language": [
"en-US"
@@ -11513,20 +11513,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11645"
],
"x-ms-request-id": [
- "7263c67c-b8e0-45cc-ab69-7399fb7c0719"
+ "6c5dcaac-ec1f-48e9-8bdf-8fb865988af2"
],
"x-ms-correlation-request-id": [
- "7263c67c-b8e0-45cc-ab69-7399fb7c0719"
+ "6c5dcaac-ec1f-48e9-8bdf-8fb865988af2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223132Z:7263c67c-b8e0-45cc-ab69-7399fb7c0719"
+ "NORTHCENTRALUS:20200519T191253Z:6c5dcaac-ec1f-48e9-8bdf-8fb865988af2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11535,7 +11532,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:32 GMT"
+ "Tue, 19 May 2020 19:12:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11544,20 +11541,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:29.0168606Z\",\r\n \"duration\": \"PT1.9396785S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f46d06e8-d6d7-4e6d-b80a-c6f7adc2b92c"
+ "691b6b39-8db6-45c2-9bf3-c5a241e6c410"
],
"Accept-Language": [
"en-US"
@@ -11576,20 +11576,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11643"
],
"x-ms-request-id": [
- "a932d34d-f312-44a8-b6a6-452dc0e6d614"
+ "e7d23420-1533-492a-8e64-6a1218570d69"
],
"x-ms-correlation-request-id": [
- "a932d34d-f312-44a8-b6a6-452dc0e6d614"
+ "e7d23420-1533-492a-8e64-6a1218570d69"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223132Z:a932d34d-f312-44a8-b6a6-452dc0e6d614"
+ "NORTHCENTRALUS:20200519T191253Z:e7d23420-1533-492a-8e64-6a1218570d69"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11598,7 +11595,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:32 GMT"
+ "Tue, 19 May 2020 19:12:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11607,20 +11604,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.6879618Z\",\r\n \"duration\": \"PT5.6107797S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0461813-359f-438c-b7d7-a336d95940c3"
+ "cec9e570-27b5-473e-8083-7694b1d67122"
],
"Accept-Language": [
"en-US"
@@ -11639,20 +11639,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11641"
],
"x-ms-request-id": [
- "eb01d887-5dcd-4e3a-921b-a242f25bed2e"
+ "9b91bf31-d314-415e-aee6-0cd3b3d1b1c7"
],
"x-ms-correlation-request-id": [
- "eb01d887-5dcd-4e3a-921b-a242f25bed2e"
+ "9b91bf31-d314-415e-aee6-0cd3b3d1b1c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223133Z:eb01d887-5dcd-4e3a-921b-a242f25bed2e"
+ "NORTHCENTRALUS:20200519T191254Z:9b91bf31-d314-415e-aee6-0cd3b3d1b1c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11661,7 +11658,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:33 GMT"
+ "Tue, 19 May 2020 19:12:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11670,20 +11667,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.1134575Z\",\r\n \"duration\": \"PT51.1114284S\",\r\n \"trackingId\": \"6f7f11ef-740c-4e11-84a7-1d597645fa06\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f0c288c-f760-489f-8258-05286f8df5f2"
+ "aa1a3679-0b39-4493-91c3-d465585f35ef"
],
"Accept-Language": [
"en-US"
@@ -11702,20 +11702,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11639"
],
"x-ms-request-id": [
- "51ed16a2-a1cf-4a32-8ec8-5b7786d91b0a"
+ "8b6fc049-5feb-4183-aff5-621099789d24"
],
"x-ms-correlation-request-id": [
- "51ed16a2-a1cf-4a32-8ec8-5b7786d91b0a"
+ "8b6fc049-5feb-4183-aff5-621099789d24"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223133Z:51ed16a2-a1cf-4a32-8ec8-5b7786d91b0a"
+ "NORTHCENTRALUS:20200519T191254Z:8b6fc049-5feb-4183-aff5-621099789d24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11724,7 +11721,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:33 GMT"
+ "Tue, 19 May 2020 19:12:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11733,20 +11730,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54f96300-3da2-4a6d-ae5c-5bade5153c5a"
+ "22733f15-95f3-464a-953b-abd3de28c062"
],
"Accept-Language": [
"en-US"
@@ -11765,20 +11765,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11637"
],
"x-ms-request-id": [
- "b80e0c9b-a494-4297-a0fe-758ac7cafa7d"
+ "364422dc-1f9b-4f0a-bb04-1f28375c2cfa"
],
"x-ms-correlation-request-id": [
- "b80e0c9b-a494-4297-a0fe-758ac7cafa7d"
+ "364422dc-1f9b-4f0a-bb04-1f28375c2cfa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223134Z:b80e0c9b-a494-4297-a0fe-758ac7cafa7d"
+ "NORTHCENTRALUS:20200519T191255Z:364422dc-1f9b-4f0a-bb04-1f28375c2cfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11787,7 +11784,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:33 GMT"
+ "Tue, 19 May 2020 19:12:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11796,20 +11793,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96c15195-ded3-4c9c-bfba-e28b58f76e1c"
+ "b42a665f-f16a-431a-8f73-24101354d822"
],
"Accept-Language": [
"en-US"
@@ -11828,20 +11828,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11635"
],
"x-ms-request-id": [
- "753467f6-f6e1-4546-9c8a-d61c6fd06c72"
+ "9ef427e1-ba1c-461c-8d35-83c445aeb15e"
],
"x-ms-correlation-request-id": [
- "753467f6-f6e1-4546-9c8a-d61c6fd06c72"
+ "9ef427e1-ba1c-461c-8d35-83c445aeb15e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223134Z:753467f6-f6e1-4546-9c8a-d61c6fd06c72"
+ "NORTHCENTRALUS:20200519T191255Z:9ef427e1-ba1c-461c-8d35-83c445aeb15e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11850,7 +11847,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:34 GMT"
+ "Tue, 19 May 2020 19:12:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11859,20 +11856,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b3a1210-7963-4861-aada-972a957487e2"
+ "4006cb45-36e8-4caa-91e7-20fca260fb25"
],
"Accept-Language": [
"en-US"
@@ -11891,20 +11891,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11633"
],
"x-ms-request-id": [
- "3e8212f9-6f1e-43e2-98fb-e38b7beef22f"
+ "3738ba0b-d5ef-4a24-ae15-d8aa16350fd4"
],
"x-ms-correlation-request-id": [
- "3e8212f9-6f1e-43e2-98fb-e38b7beef22f"
+ "3738ba0b-d5ef-4a24-ae15-d8aa16350fd4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223134Z:3e8212f9-6f1e-43e2-98fb-e38b7beef22f"
+ "NORTHCENTRALUS:20200519T191256Z:3738ba0b-d5ef-4a24-ae15-d8aa16350fd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11913,7 +11910,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:34 GMT"
+ "Tue, 19 May 2020 19:12:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11922,20 +11919,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8042944-0ba2-4967-a449-d52dbab37da3"
+ "59484fe2-91b0-458b-8bf2-94c9473f666c"
],
"Accept-Language": [
"en-US"
@@ -11954,20 +11954,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11631"
],
"x-ms-request-id": [
- "129903c8-abbc-4fe9-97fd-36ca36635661"
+ "a14ea6f4-5540-4527-a464-ce790243479d"
],
"x-ms-correlation-request-id": [
- "129903c8-abbc-4fe9-97fd-36ca36635661"
+ "a14ea6f4-5540-4527-a464-ce790243479d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223135Z:129903c8-abbc-4fe9-97fd-36ca36635661"
+ "NORTHCENTRALUS:20200519T191256Z:a14ea6f4-5540-4527-a464-ce790243479d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11976,7 +11973,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:35 GMT"
+ "Tue, 19 May 2020 19:12:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11985,20 +11982,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb6fb9f2-9bfc-44a8-90f7-90fd04c70116"
+ "19acaab5-c07e-47f9-9148-37545159fc46"
],
"Accept-Language": [
"en-US"
@@ -12017,20 +12017,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11629"
],
"x-ms-request-id": [
- "fb516138-1c78-43fa-a850-8a9d1bef1a2b"
+ "9f532753-578f-4d71-b639-35e527d32b94"
],
"x-ms-correlation-request-id": [
- "fb516138-1c78-43fa-a850-8a9d1bef1a2b"
+ "9f532753-578f-4d71-b639-35e527d32b94"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223135Z:fb516138-1c78-43fa-a850-8a9d1bef1a2b"
+ "NORTHCENTRALUS:20200519T191256Z:9f532753-578f-4d71-b639-35e527d32b94"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12039,7 +12036,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:35 GMT"
+ "Tue, 19 May 2020 19:12:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12048,20 +12045,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "629c7111-36f0-49b8-8cae-49fec88cd336"
+ "ad5222ff-3642-4f6f-b1d3-203ab5bcfff7"
],
"Accept-Language": [
"en-US"
@@ -12080,20 +12080,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11627"
],
"x-ms-request-id": [
- "691fa6e1-b3a7-4c85-a962-c745373e882c"
+ "e82761df-8ef4-4c72-8c35-2c523bb9599a"
],
"x-ms-correlation-request-id": [
- "691fa6e1-b3a7-4c85-a962-c745373e882c"
+ "e82761df-8ef4-4c72-8c35-2c523bb9599a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223136Z:691fa6e1-b3a7-4c85-a962-c745373e882c"
+ "NORTHCENTRALUS:20200519T191257Z:e82761df-8ef4-4c72-8c35-2c523bb9599a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12102,7 +12099,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:35 GMT"
+ "Tue, 19 May 2020 19:12:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12111,20 +12108,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0192e517-f6fd-4e21-9651-52f4e6d6991c"
+ "34d301e4-ae4a-45a8-8392-bbdce95125cc"
],
"Accept-Language": [
"en-US"
@@ -12143,20 +12143,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11625"
],
"x-ms-request-id": [
- "e60cb7e5-7eb6-445d-9dc3-b76551814e87"
+ "faef381c-364c-4ba8-8a1c-2b55b76d2a24"
],
"x-ms-correlation-request-id": [
- "e60cb7e5-7eb6-445d-9dc3-b76551814e87"
+ "faef381c-364c-4ba8-8a1c-2b55b76d2a24"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223136Z:e60cb7e5-7eb6-445d-9dc3-b76551814e87"
+ "NORTHCENTRALUS:20200519T191257Z:faef381c-364c-4ba8-8a1c-2b55b76d2a24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12165,7 +12162,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:36 GMT"
+ "Tue, 19 May 2020 19:12:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12174,20 +12171,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:32.8462746Z\",\r\n \"duration\": \"PT5.7690925S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3acf3797-ca8c-454c-b5d5-cde9b71b567e"
+ "9ea038ef-a6ff-4156-817a-dfcf2aeb2d5b"
],
"Accept-Language": [
"en-US"
@@ -12206,20 +12206,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11623"
],
"x-ms-request-id": [
- "eef666c5-8b46-411c-91ed-97a2bd918284"
+ "33750d74-57e5-417a-836f-2618354a5381"
],
"x-ms-correlation-request-id": [
- "eef666c5-8b46-411c-91ed-97a2bd918284"
+ "33750d74-57e5-417a-836f-2618354a5381"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223137Z:eef666c5-8b46-411c-91ed-97a2bd918284"
+ "NORTHCENTRALUS:20200519T191258Z:33750d74-57e5-417a-836f-2618354a5381"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12228,7 +12225,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:36 GMT"
+ "Tue, 19 May 2020 19:12:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12237,20 +12234,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47992437-ac3b-4dfe-a9ab-2d300d452bb2"
+ "f91eb632-a30d-4d68-a285-9062561e776f"
],
"Accept-Language": [
"en-US"
@@ -12269,20 +12269,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11621"
],
"x-ms-request-id": [
- "9c0d3f62-9dd5-4a45-999b-f24d9cb87555"
+ "351ab253-6848-4164-84f1-7af15047aabc"
],
"x-ms-correlation-request-id": [
- "9c0d3f62-9dd5-4a45-999b-f24d9cb87555"
+ "351ab253-6848-4164-84f1-7af15047aabc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223137Z:9c0d3f62-9dd5-4a45-999b-f24d9cb87555"
+ "NORTHCENTRALUS:20200519T191258Z:351ab253-6848-4164-84f1-7af15047aabc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12291,7 +12288,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:37 GMT"
+ "Tue, 19 May 2020 19:12:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12300,20 +12297,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d7e90286-84d9-4f48-b05c-5af49d2fd144"
+ "27e02a8d-4473-45b8-abb2-91f407004e62"
],
"Accept-Language": [
"en-US"
@@ -12332,20 +12332,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11619"
],
"x-ms-request-id": [
- "9d45fd1b-f8e4-4177-bdd2-01fd36ef1a7e"
+ "5ce08e17-d946-4a22-9b92-044ef462b9e7"
],
"x-ms-correlation-request-id": [
- "9d45fd1b-f8e4-4177-bdd2-01fd36ef1a7e"
+ "5ce08e17-d946-4a22-9b92-044ef462b9e7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223137Z:9d45fd1b-f8e4-4177-bdd2-01fd36ef1a7e"
+ "NORTHCENTRALUS:20200519T191259Z:5ce08e17-d946-4a22-9b92-044ef462b9e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12354,7 +12351,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:37 GMT"
+ "Tue, 19 May 2020 19:12:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12363,20 +12360,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6bf9d52e-9240-44bd-abef-a96533e710bd"
+ "ec232003-50c4-4279-8bfc-74056b6d5bd6"
],
"Accept-Language": [
"en-US"
@@ -12395,20 +12395,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11617"
],
"x-ms-request-id": [
- "b108c8ab-5f57-46f6-8fdd-d04377f0c9a1"
+ "8d432616-7fc5-41b6-af77-c111a56cce16"
],
"x-ms-correlation-request-id": [
- "b108c8ab-5f57-46f6-8fdd-d04377f0c9a1"
+ "8d432616-7fc5-41b6-af77-c111a56cce16"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223138Z:b108c8ab-5f57-46f6-8fdd-d04377f0c9a1"
+ "NORTHCENTRALUS:20200519T191259Z:8d432616-7fc5-41b6-af77-c111a56cce16"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12417,7 +12414,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:37 GMT"
+ "Tue, 19 May 2020 19:12:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12426,20 +12423,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "829"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b29a2f22-c7fa-4c0e-bfa3-9f615a24b43b"
+ "aef95440-6605-4677-9371-b9afb3230223"
],
"Accept-Language": [
"en-US"
@@ -12458,20 +12458,10856 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11615"
+ ],
+ "x-ms-request-id": [
+ "73338667-47f1-439a-bcaf-b5d141fc3cb2"
+ ],
+ "x-ms-correlation-request-id": [
+ "73338667-47f1-439a-bcaf-b5d141fc3cb2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191259Z:73338667-47f1-439a-bcaf-b5d141fc3cb2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a1feaca0-ba44-4e12-bb19-e80a98779e32"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11613"
+ ],
+ "x-ms-request-id": [
+ "46cb2b98-e3b4-4d86-9553-4e60abb91aa6"
+ ],
+ "x-ms-correlation-request-id": [
+ "46cb2b98-e3b4-4d86-9553-4e60abb91aa6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191300Z:46cb2b98-e3b4-4d86-9553-4e60abb91aa6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "122a9ada-ef68-4e44-9f78-3e59e5c9ca43"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11611"
+ ],
+ "x-ms-request-id": [
+ "331b735f-ff01-4fcc-98a8-17740d49ec57"
+ ],
+ "x-ms-correlation-request-id": [
+ "331b735f-ff01-4fcc-98a8-17740d49ec57"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191300Z:331b735f-ff01-4fcc-98a8-17740d49ec57"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b0a9b39-5c80-4e42-a69c-33adf718ca22"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11609"
+ ],
+ "x-ms-request-id": [
+ "3af71a67-b9f0-4ab7-8fea-0df8d6997e85"
+ ],
+ "x-ms-correlation-request-id": [
+ "3af71a67-b9f0-4ab7-8fea-0df8d6997e85"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191301Z:3af71a67-b9f0-4ab7-8fea-0df8d6997e85"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "023781ff-eed9-4697-8dd3-4dbef3facee0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11607"
+ ],
+ "x-ms-request-id": [
+ "8d6dec57-bbac-4c20-a0d6-895992894a64"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d6dec57-bbac-4c20-a0d6-895992894a64"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191301Z:8d6dec57-bbac-4c20-a0d6-895992894a64"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "669b9c5f-be92-4cdc-b47a-95a11b1ccc64"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11605"
+ ],
+ "x-ms-request-id": [
+ "b9c47c0d-6097-41f3-84a2-28ce3308b1af"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9c47c0d-6097-41f3-84a2-28ce3308b1af"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191301Z:b9c47c0d-6097-41f3-84a2-28ce3308b1af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fbeb4700-89c5-4c1b-a1fd-7f80869c6137"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11603"
+ ],
+ "x-ms-request-id": [
+ "d8509fa0-92f6-4f1a-baa1-851e01c11d9d"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8509fa0-92f6-4f1a-baa1-851e01c11d9d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191302Z:d8509fa0-92f6-4f1a-baa1-851e01c11d9d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6d99adb-3d27-4450-b920-7d434b2858d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11601"
+ ],
+ "x-ms-request-id": [
+ "744ed628-19a7-4a67-812e-0ff6683ba944"
+ ],
+ "x-ms-correlation-request-id": [
+ "744ed628-19a7-4a67-812e-0ff6683ba944"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191302Z:744ed628-19a7-4a67-812e-0ff6683ba944"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ea01d3d9-2aa3-4bed-8945-c4d68c86d2c6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11599"
+ ],
+ "x-ms-request-id": [
+ "3a6d62e8-be1b-4909-a485-d469ae21c7cb"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a6d62e8-be1b-4909-a485-d469ae21c7cb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191303Z:3a6d62e8-be1b-4909-a485-d469ae21c7cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b7e091d-d582-4dca-b41d-44ac9fc246f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11597"
+ ],
+ "x-ms-request-id": [
+ "dee6cc77-c35a-46f3-bb88-0e59d5cdb34e"
+ ],
+ "x-ms-correlation-request-id": [
+ "dee6cc77-c35a-46f3-bb88-0e59d5cdb34e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191303Z:dee6cc77-c35a-46f3-bb88-0e59d5cdb34e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.6284301Z\",\r\n \"duration\": \"PT1M4.626401S\",\r\n \"trackingId\": \"dff1b711-8160-4c13-8594-c9f6674ed198\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3a7201df-96e3-4679-ba9c-61fb142d48ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11595"
+ ],
+ "x-ms-request-id": [
+ "0ff60f7d-9856-4b03-99db-18f282693889"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ff60f7d-9856-4b03-99db-18f282693889"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191303Z:0ff60f7d-9856-4b03-99db-18f282693889"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f061efa-7e35-45f4-9ad5-6062c1642d77"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11593"
+ ],
+ "x-ms-request-id": [
+ "725a9003-f80e-4b51-8d17-cdcbb2837c1b"
+ ],
+ "x-ms-correlation-request-id": [
+ "725a9003-f80e-4b51-8d17-cdcbb2837c1b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191304Z:725a9003-f80e-4b51-8d17-cdcbb2837c1b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0cd490c1-6386-4a95-b084-88218ca92fc8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11591"
+ ],
+ "x-ms-request-id": [
+ "414f9e14-1157-445e-a245-b0599110818b"
+ ],
+ "x-ms-correlation-request-id": [
+ "414f9e14-1157-445e-a245-b0599110818b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191304Z:414f9e14-1157-445e-a245-b0599110818b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8b325ab-a8b0-4c50-bc1a-a241c6e70f75"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11589"
+ ],
+ "x-ms-request-id": [
+ "2d40731c-dba3-46c7-9f13-6e86d7858766"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d40731c-dba3-46c7-9f13-6e86d7858766"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191305Z:2d40731c-dba3-46c7-9f13-6e86d7858766"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd361af8-3b27-4bb0-bb08-761da13fce09"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11587"
+ ],
+ "x-ms-request-id": [
+ "9d5f22a4-b0f8-4946-bea8-bebdd0c60b7f"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d5f22a4-b0f8-4946-bea8-bebdd0c60b7f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191305Z:9d5f22a4-b0f8-4946-bea8-bebdd0c60b7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50a8ed13-f210-4cdf-a8b5-f9b68367f433"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11585"
+ ],
+ "x-ms-request-id": [
+ "a8375178-e41e-4833-83e9-ebc3aa4cd3ee"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8375178-e41e-4833-83e9-ebc3aa4cd3ee"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191306Z:a8375178-e41e-4833-83e9-ebc3aa4cd3ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "624448bd-4fcf-415a-8b15-2081897cfddd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11583"
+ ],
+ "x-ms-request-id": [
+ "0ebbba57-7295-4a27-b070-1b994b2efa6f"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ebbba57-7295-4a27-b070-1b994b2efa6f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191306Z:0ebbba57-7295-4a27-b070-1b994b2efa6f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0de5fcd0-89fb-448e-90bb-c286222a392f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11581"
+ ],
+ "x-ms-request-id": [
+ "665fcd9e-b775-45b6-a17d-a567209a0df6"
+ ],
+ "x-ms-correlation-request-id": [
+ "665fcd9e-b775-45b6-a17d-a567209a0df6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191306Z:665fcd9e-b775-45b6-a17d-a567209a0df6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f21302d4-2bd3-45f1-b8e6-c13370f0349d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11579"
+ ],
+ "x-ms-request-id": [
+ "daf95ae5-c9f6-422d-b457-569fe8fca85c"
+ ],
+ "x-ms-correlation-request-id": [
+ "daf95ae5-c9f6-422d-b457-569fe8fca85c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191307Z:daf95ae5-c9f6-422d-b457-569fe8fca85c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5fabb3a3-795d-402f-ba4a-fbc59922e21f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11577"
+ ],
+ "x-ms-request-id": [
+ "7bea2bdb-fc4a-4d2e-8743-45eb9f3ea927"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bea2bdb-fc4a-4d2e-8743-45eb9f3ea927"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191307Z:7bea2bdb-fc4a-4d2e-8743-45eb9f3ea927"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6cc5ec83-93e4-47a0-9117-516bb67666b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11575"
+ ],
+ "x-ms-request-id": [
+ "277535b9-6eae-40ae-9281-07f5eac06d1d"
+ ],
+ "x-ms-correlation-request-id": [
+ "277535b9-6eae-40ae-9281-07f5eac06d1d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191308Z:277535b9-6eae-40ae-9281-07f5eac06d1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4efba500-fe6f-48d0-9686-6cb0b5046d55"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11573"
+ ],
+ "x-ms-request-id": [
+ "865a942a-e991-4e24-a032-6b8385ebaa0b"
+ ],
+ "x-ms-correlation-request-id": [
+ "865a942a-e991-4e24-a032-6b8385ebaa0b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191308Z:865a942a-e991-4e24-a032-6b8385ebaa0b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00b4b6d4-abe3-4a66-ada0-b24c46dbfd93"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11571"
+ ],
+ "x-ms-request-id": [
+ "2a4eb158-5e6d-41b3-b1a2-9e83598a063c"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a4eb158-5e6d-41b3-b1a2-9e83598a063c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191308Z:2a4eb158-5e6d-41b3-b1a2-9e83598a063c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2728a0d5-42b4-4f8c-9217-a1b1c787dc15"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11569"
+ ],
+ "x-ms-request-id": [
+ "c8b1708c-0b8f-4a22-9c24-865246b957e2"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8b1708c-0b8f-4a22-9c24-865246b957e2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191309Z:c8b1708c-0b8f-4a22-9c24-865246b957e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4c3b5e97-27a6-49de-9fa4-fd360b35bdae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11567"
+ ],
+ "x-ms-request-id": [
+ "6fc88f8c-8655-4847-b19c-7b0ebcdc304c"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fc88f8c-8655-4847-b19c-7b0ebcdc304c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191309Z:6fc88f8c-8655-4847-b19c-7b0ebcdc304c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "353f73e6-6c12-489b-86d0-b39bb7cc14e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11565"
+ ],
+ "x-ms-request-id": [
+ "48fa6510-4332-4391-8c9e-90b7f0ee52c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "48fa6510-4332-4391-8c9e-90b7f0ee52c7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191310Z:48fa6510-4332-4391-8c9e-90b7f0ee52c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7bc89a1-ad7a-4b87-a526-48f777a849d6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11563"
+ ],
+ "x-ms-request-id": [
+ "4dfb67a8-baee-4590-81f3-c60acfdf4119"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dfb67a8-baee-4590-81f3-c60acfdf4119"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191310Z:4dfb67a8-baee-4590-81f3-c60acfdf4119"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae4af855-d910-41ea-a3c0-5ad26e38e308"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11561"
+ ],
+ "x-ms-request-id": [
+ "289b03f1-305b-468f-95c4-53153116ca4a"
+ ],
+ "x-ms-correlation-request-id": [
+ "289b03f1-305b-468f-95c4-53153116ca4a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191310Z:289b03f1-305b-468f-95c4-53153116ca4a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6bfc7493-588a-416b-a7c1-7cc2db40c70a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11559"
+ ],
+ "x-ms-request-id": [
+ "06e410a7-2821-4f70-974a-dc04dab803de"
+ ],
+ "x-ms-correlation-request-id": [
+ "06e410a7-2821-4f70-974a-dc04dab803de"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191311Z:06e410a7-2821-4f70-974a-dc04dab803de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a267e293-bcac-429a-9035-8c7a60c3a7f4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11557"
+ ],
+ "x-ms-request-id": [
+ "d49ef566-9a1c-4f1d-9596-fb465e4e1f6b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d49ef566-9a1c-4f1d-9596-fb465e4e1f6b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191311Z:d49ef566-9a1c-4f1d-9596-fb465e4e1f6b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "26f29b69-bcf4-4e22-a651-b53410cfc815"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11555"
+ ],
+ "x-ms-request-id": [
+ "7647dad0-6e3e-4756-a5f4-30bf43e25398"
+ ],
+ "x-ms-correlation-request-id": [
+ "7647dad0-6e3e-4756-a5f4-30bf43e25398"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191312Z:7647dad0-6e3e-4756-a5f4-30bf43e25398"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bbb676b-b1ea-42a1-b7f0-929ac4d52f28"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11553"
+ ],
+ "x-ms-request-id": [
+ "6cb131fa-330a-4a08-ae5c-5f6a748c1c22"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cb131fa-330a-4a08-ae5c-5f6a748c1c22"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191312Z:6cb131fa-330a-4a08-ae5c-5f6a748c1c22"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9d8d20e-56ff-4143-8d67-103db094aa0d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11551"
+ ],
+ "x-ms-request-id": [
+ "834ca8d3-6794-43eb-9e70-ab1d0fa17d40"
+ ],
+ "x-ms-correlation-request-id": [
+ "834ca8d3-6794-43eb-9e70-ab1d0fa17d40"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191312Z:834ca8d3-6794-43eb-9e70-ab1d0fa17d40"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3b2f5d47-be3f-4c77-a27b-3f62ab6a1140"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11549"
+ ],
+ "x-ms-request-id": [
+ "0b8094b6-3343-4815-a907-ec216ce1f67a"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b8094b6-3343-4815-a907-ec216ce1f67a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191313Z:0b8094b6-3343-4815-a907-ec216ce1f67a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e2b8e05-d4ac-4a11-a655-c2fd585c8c10"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11547"
+ ],
+ "x-ms-request-id": [
+ "56275953-d5a4-4a23-a94e-6c4e2d8e74b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "56275953-d5a4-4a23-a94e-6c4e2d8e74b6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191313Z:56275953-d5a4-4a23-a94e-6c4e2d8e74b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "56ab69f7-ba04-4afa-a33b-d3cfb23395d4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11545"
+ ],
+ "x-ms-request-id": [
+ "4da2c6d3-23ef-438a-9dc0-f7d8b93f903f"
+ ],
+ "x-ms-correlation-request-id": [
+ "4da2c6d3-23ef-438a-9dc0-f7d8b93f903f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191314Z:4da2c6d3-23ef-438a-9dc0-f7d8b93f903f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e05ada74-1ce3-4d9d-ab6d-c2ecb187f977"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11543"
+ ],
+ "x-ms-request-id": [
+ "29659dca-fe43-43e0-ba37-ecad2e5af7fb"
+ ],
+ "x-ms-correlation-request-id": [
+ "29659dca-fe43-43e0-ba37-ecad2e5af7fb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191314Z:29659dca-fe43-43e0-ba37-ecad2e5af7fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de5b6e3d-ded7-4183-af30-b82e1bafccb7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11541"
+ ],
+ "x-ms-request-id": [
+ "605775e7-c75e-492a-9acf-486963e98a08"
+ ],
+ "x-ms-correlation-request-id": [
+ "605775e7-c75e-492a-9acf-486963e98a08"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191315Z:605775e7-c75e-492a-9acf-486963e98a08"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69fe552f-702f-4b10-8b9b-09fbfa3d4193"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11539"
+ ],
+ "x-ms-request-id": [
+ "bbb3df21-14c9-4f1d-be88-6ed3cf7a4c08"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbb3df21-14c9-4f1d-be88-6ed3cf7a4c08"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191315Z:bbb3df21-14c9-4f1d-be88-6ed3cf7a4c08"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dbf72cea-ea84-4a9e-a9cc-95a438d43ce6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11537"
+ ],
+ "x-ms-request-id": [
+ "9e31098b-caa8-40d4-8110-da5fae7e7c9a"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e31098b-caa8-40d4-8110-da5fae7e7c9a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191315Z:9e31098b-caa8-40d4-8110-da5fae7e7c9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "df992188-435d-4f0b-931a-9bbf16345242"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11535"
+ ],
+ "x-ms-request-id": [
+ "ff5e7dac-9a0b-48fd-8ca7-63cff7000767"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff5e7dac-9a0b-48fd-8ca7-63cff7000767"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191316Z:ff5e7dac-9a0b-48fd-8ca7-63cff7000767"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0e5a69b3-911e-4849-aeee-ccb9d9e2a17e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11533"
+ ],
+ "x-ms-request-id": [
+ "225a124e-40dc-453f-bcfb-f3174a8946c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "225a124e-40dc-453f-bcfb-f3174a8946c7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191316Z:225a124e-40dc-453f-bcfb-f3174a8946c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f0dcedd-7db7-489f-9a4f-835dcb0758c5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11531"
+ ],
+ "x-ms-request-id": [
+ "b0bdbdc5-bb54-4481-b9c1-7123d8108532"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0bdbdc5-bb54-4481-b9c1-7123d8108532"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191317Z:b0bdbdc5-bb54-4481-b9c1-7123d8108532"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fa8bf0b9-45e7-4cca-b308-0f7bfe902a5b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11529"
+ ],
+ "x-ms-request-id": [
+ "d3646d04-fab3-46d8-9145-2ee9e7b68edc"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3646d04-fab3-46d8-9145-2ee9e7b68edc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191317Z:d3646d04-fab3-46d8-9145-2ee9e7b68edc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "068e8a78-f644-4c63-8497-320f0c3ca4d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11527"
+ ],
+ "x-ms-request-id": [
+ "8baca8f1-28c4-4d8d-b3be-02257ae23f49"
+ ],
+ "x-ms-correlation-request-id": [
+ "8baca8f1-28c4-4d8d-b3be-02257ae23f49"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191317Z:8baca8f1-28c4-4d8d-b3be-02257ae23f49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:17 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0915a300-cfaf-4ddf-9276-28223b9beccc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11525"
+ ],
+ "x-ms-request-id": [
+ "5f7ddb66-d9f2-48a9-8897-b4931c26ecc9"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f7ddb66-d9f2-48a9-8897-b4931c26ecc9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191318Z:5f7ddb66-d9f2-48a9-8897-b4931c26ecc9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:17 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9345d9a2-1f80-4d35-8967-8ea13bdaf739"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11523"
+ ],
+ "x-ms-request-id": [
+ "133732df-b527-426e-a7da-1c2be74c387b"
+ ],
+ "x-ms-correlation-request-id": [
+ "133732df-b527-426e-a7da-1c2be74c387b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191318Z:133732df-b527-426e-a7da-1c2be74c387b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:17 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f4a828c5-2bd1-4d44-b2eb-be1c1e2492ea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11521"
+ ],
+ "x-ms-request-id": [
+ "d8655939-5d92-494b-97c5-9fdadf5c6c2b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8655939-5d92-494b-97c5-9fdadf5c6c2b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191319Z:d8655939-5d92-494b-97c5-9fdadf5c6c2b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b0137266-1089-4e61-9fd5-7f1a5172822a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11519"
+ ],
+ "x-ms-request-id": [
+ "2fde362e-ba67-45b6-b9fd-f51d0f35926b"
+ ],
+ "x-ms-correlation-request-id": [
+ "2fde362e-ba67-45b6-b9fd-f51d0f35926b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191319Z:2fde362e-ba67-45b6-b9fd-f51d0f35926b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5c87e3f8-7388-440b-83f8-4f1491e05257"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11517"
+ ],
+ "x-ms-request-id": [
+ "6b62151b-8150-4123-ab93-f4ba355dbdcd"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b62151b-8150-4123-ab93-f4ba355dbdcd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191319Z:6b62151b-8150-4123-ab93-f4ba355dbdcd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c652ea06-c09d-4976-ad57-4d1e0e085684"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11515"
+ ],
+ "x-ms-request-id": [
+ "bc8247d0-1b74-4fe7-b47a-63a4bba36d0d"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc8247d0-1b74-4fe7-b47a-63a4bba36d0d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191320Z:bc8247d0-1b74-4fe7-b47a-63a4bba36d0d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3790e839-e241-4498-9634-2a5565adb4ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11513"
+ ],
+ "x-ms-request-id": [
+ "7853768d-6d9c-4872-89f4-3b46d5b54ec2"
+ ],
+ "x-ms-correlation-request-id": [
+ "7853768d-6d9c-4872-89f4-3b46d5b54ec2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191320Z:7853768d-6d9c-4872-89f4-3b46d5b54ec2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bf6fb82a-44b9-4936-8799-d47e38c1041c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11511"
+ ],
+ "x-ms-request-id": [
+ "3719d0cc-c7a8-4b8c-82de-16e3859241f5"
+ ],
+ "x-ms-correlation-request-id": [
+ "3719d0cc-c7a8-4b8c-82de-16e3859241f5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191321Z:3719d0cc-c7a8-4b8c-82de-16e3859241f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "530d071d-ad50-48bd-ad12-80b1086b64b1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11509"
+ ],
+ "x-ms-request-id": [
+ "2438602f-0fc8-4b69-ad22-f868ae8a9a1b"
+ ],
+ "x-ms-correlation-request-id": [
+ "2438602f-0fc8-4b69-ad22-f868ae8a9a1b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191321Z:2438602f-0fc8-4b69-ad22-f868ae8a9a1b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca080553-a089-43d0-9401-1b1a24ecbac8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11507"
+ ],
+ "x-ms-request-id": [
+ "bdb9c7ad-e5dc-47bc-9983-145da2d117e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "bdb9c7ad-e5dc-47bc-9983-145da2d117e7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191322Z:bdb9c7ad-e5dc-47bc-9983-145da2d117e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5857cfbb-105d-41f1-8d02-26a402ca4190"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11505"
+ ],
+ "x-ms-request-id": [
+ "1caaac8d-401f-4053-99d8-6eb5968db3e2"
+ ],
+ "x-ms-correlation-request-id": [
+ "1caaac8d-401f-4053-99d8-6eb5968db3e2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191322Z:1caaac8d-401f-4053-99d8-6eb5968db3e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b927778b-1c15-4e93-84d8-a267530f8845"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11503"
+ ],
+ "x-ms-request-id": [
+ "c4d94785-46a5-43cc-bb8a-19e769585953"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4d94785-46a5-43cc-bb8a-19e769585953"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191322Z:c4d94785-46a5-43cc-bb8a-19e769585953"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "296932a8-c869-498c-891e-6a1ee9d67d69"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11501"
+ ],
+ "x-ms-request-id": [
+ "c679a0e5-1447-44c1-a056-b3d4fb1713fc"
+ ],
+ "x-ms-correlation-request-id": [
+ "c679a0e5-1447-44c1-a056-b3d4fb1713fc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191323Z:c679a0e5-1447-44c1-a056-b3d4fb1713fc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fdb385b7-9ad6-41c6-8278-69e7afe4e05c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11499"
+ ],
+ "x-ms-request-id": [
+ "4d656b40-f4d9-407f-a9b6-979a55f34ab1"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d656b40-f4d9-407f-a9b6-979a55f34ab1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191323Z:4d656b40-f4d9-407f-a9b6-979a55f34ab1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6858b89-c145-485d-b7c4-63d6b85d7de5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11497"
+ ],
+ "x-ms-request-id": [
+ "7311840e-2c9f-40e0-a2f5-862d5c09dcc4"
+ ],
+ "x-ms-correlation-request-id": [
+ "7311840e-2c9f-40e0-a2f5-862d5c09dcc4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191324Z:7311840e-2c9f-40e0-a2f5-862d5c09dcc4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd6faf34-f28f-4459-b257-75dbcfae8def"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11495"
+ ],
+ "x-ms-request-id": [
+ "f567d53c-6132-4fdf-a44e-2d71e192a48b"
+ ],
+ "x-ms-correlation-request-id": [
+ "f567d53c-6132-4fdf-a44e-2d71e192a48b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191324Z:f567d53c-6132-4fdf-a44e-2d71e192a48b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.4345401Z\",\r\n \"duration\": \"PT1M13.432511S\",\r\n \"trackingId\": \"23b7efa1-6ab9-45d5-9637-41a70abb75bb\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "db963769-8a6c-47e2-8dfb-c19ac3c0e8d7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11493"
+ ],
+ "x-ms-request-id": [
+ "b273faf6-4b99-478e-a920-6da4dcd71bd2"
+ ],
+ "x-ms-correlation-request-id": [
+ "b273faf6-4b99-478e-a920-6da4dcd71bd2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191324Z:b273faf6-4b99-478e-a920-6da4dcd71bd2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "828"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-19T19:13:24.8562197Z\",\r\n \"duration\": \"PT1M34.8541906S\",\r\n \"trackingId\": \"36e0d36d-8566-4a53-8c78-024090cfcee7\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/deployments/ps6348/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9kZXBsb3ltZW50cy9wczYzNDgvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8d545cd-dc3a-4650-8435-2cc3c26bac6b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11491"
+ ],
+ "x-ms-request-id": [
+ "e153821c-acc2-46d3-be30-a028407db7bc"
+ ],
+ "x-ms-correlation-request-id": [
+ "e153821c-acc2-46d3-be30-a028407db7bc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191325Z:e153821c-acc2-46d3-be30-a028407db7bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:13:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1287"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/A832D5D62EEE8266\",\r\n \"operationId\": \"A832D5D62EEE8266\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-19T19:13:24.8562197Z\",\r\n \"duration\": \"PT1M34.8541906S\",\r\n \"trackingId\": \"36e0d36d-8566-4a53-8c78-024090cfcee7\",\r\n \"serviceRequestId\": \"91360c5b-8843-41d5-b4d5-3ccf6615b6f3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348/operations/08586116913838726468\",\r\n \"operationId\": \"08586116913838726468\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-19T19:13:25.1721654Z\",\r\n \"duration\": \"PT0.1620653S\",\r\n \"trackingId\": \"8f43beb3-ad3f-4667-bc25-891ce4e18a6c\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f6f568d-5054-481a-93c5-23aa01da099f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "f7cfa081-3b38-49fd-9d5d-602ce198d4ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7cfa081-3b38-49fd-9d5d-602ce198d4ec"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191143Z:f7cfa081-3b38-49fd-9d5d-602ce198d4ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-19T19:11:42.3801439Z\",\r\n \"duration\": \"PT0.7751429S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a11f4252-d6ae-4773-8721-4cccc15caebd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "e51689cf-9f98-4097-897c-84a666e4f38e"
+ ],
+ "x-ms-correlation-request-id": [
+ "e51689cf-9f98-4097-897c-84a666e4f38e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191143Z:e51689cf-9f98-4097-897c-84a666e4f38e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-19T19:11:42.3801439Z\",\r\n \"duration\": \"PT0.7751429S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1559d04e-6156-4f60-a81c-91c00986668b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "c9845c7a-4898-4216-bf0c-5f39afa019fb"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9845c7a-4898-4216-bf0c-5f39afa019fb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191144Z:c9845c7a-4898-4216-bf0c-5f39afa019fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da3c61b6-0a93-4da1-8fc6-ace764ecbdaa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "ea0a1b6a-290e-45f0-9ad8-a77515138d2c"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea0a1b6a-290e-45f0-9ad8-a77515138d2c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191144Z:ea0a1b6a-290e-45f0-9ad8-a77515138d2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c75e0366-5603-4651-9634-f58f0e41e5fd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "94e03ba4-26d2-4d3e-b479-6b6c1dbd427b"
+ ],
+ "x-ms-correlation-request-id": [
+ "94e03ba4-26d2-4d3e-b479-6b6c1dbd427b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191144Z:94e03ba4-26d2-4d3e-b479-6b6c1dbd427b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d8e55eb8-6782-4210-9246-2e82ef955937"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "60ce0318-65a6-4a6c-bb71-1fd1001f9e30"
+ ],
+ "x-ms-correlation-request-id": [
+ "60ce0318-65a6-4a6c-bb71-1fd1001f9e30"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191145Z:60ce0318-65a6-4a6c-bb71-1fd1001f9e30"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38ef10b0-dec3-41ca-b3d5-25a29925ec4c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "4375bf72-8560-41f7-b3c7-3ee78f31f0e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "4375bf72-8560-41f7-b3c7-3ee78f31f0e7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191145Z:4375bf72-8560-41f7-b3c7-3ee78f31f0e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87280a2e-8953-40dc-b565-e26b5cc689e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "d216d4f9-8057-41cb-82f7-d88afcc90d92"
+ ],
+ "x-ms-correlation-request-id": [
+ "d216d4f9-8057-41cb-82f7-d88afcc90d92"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191146Z:d216d4f9-8057-41cb-82f7-d88afcc90d92"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "027cf6fe-5511-4ff6-85c6-f48ef8282739"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "74bf6d53-ccf5-45ff-a8f1-a3b7e9a183bb"
+ ],
+ "x-ms-correlation-request-id": [
+ "74bf6d53-ccf5-45ff-a8f1-a3b7e9a183bb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191146Z:74bf6d53-ccf5-45ff-a8f1-a3b7e9a183bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "14f35516-c95b-488b-8695-d824c8e061a6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-request-id": [
+ "b24ce3cd-0fdf-48e1-a4e3-d0254cb9263d"
+ ],
+ "x-ms-correlation-request-id": [
+ "b24ce3cd-0fdf-48e1-a4e3-d0254cb9263d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191146Z:b24ce3cd-0fdf-48e1-a4e3-d0254cb9263d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa91228b-5bbe-4906-84a4-7d80ccc809a1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-request-id": [
+ "6ff54a59-f377-4f13-b78e-47a8fe27f02e"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ff54a59-f377-4f13-b78e-47a8fe27f02e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191147Z:6ff54a59-f377-4f13-b78e-47a8fe27f02e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "804c497b-55fb-4850-90e0-70d38cd62010"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-request-id": [
+ "fd3d2cf4-2fb4-44a2-95df-729306a97089"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd3d2cf4-2fb4-44a2-95df-729306a97089"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191147Z:fd3d2cf4-2fb4-44a2-95df-729306a97089"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4628f5bb-6dfd-4716-9e6e-0e21dbaee910"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-request-id": [
+ "1e507f02-2b4c-4595-89a7-3b639c39aef4"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e507f02-2b4c-4595-89a7-3b639c39aef4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191147Z:1e507f02-2b4c-4595-89a7-3b639c39aef4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "74ca6bff-0b6e-4167-b3fe-00b1eef476e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-request-id": [
+ "ada5adfe-c076-485b-8908-e5db64919303"
+ ],
+ "x-ms-correlation-request-id": [
+ "ada5adfe-c076-485b-8908-e5db64919303"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191148Z:ada5adfe-c076-485b-8908-e5db64919303"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7de64c0-beda-4f2e-98b7-b971ddce4e9f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-request-id": [
+ "a87f5f5b-014c-4ca9-acee-1ba34410a757"
+ ],
+ "x-ms-correlation-request-id": [
+ "a87f5f5b-014c-4ca9-acee-1ba34410a757"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191148Z:a87f5f5b-014c-4ca9-acee-1ba34410a757"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "10721d35-7712-4d65-b704-1d4af22d270f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-request-id": [
+ "6fb5a24b-48f4-4691-a274-f12e58107a8d"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fb5a24b-48f4-4691-a274-f12e58107a8d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191148Z:6fb5a24b-48f4-4691-a274-f12e58107a8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d4460b8-b10a-4212-848c-ce9aa718d9b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-request-id": [
+ "a4fdf3ec-6bad-402d-a20f-bb1fa3e7b1cb"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4fdf3ec-6bad-402d-a20f-bb1fa3e7b1cb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191149Z:a4fdf3ec-6bad-402d-a20f-bb1fa3e7b1cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0350e511-939b-4eb4-96a2-e1a823e3bf53"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-request-id": [
+ "c9daf0ad-647f-42d6-99e2-fdc0c6baecfa"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9daf0ad-647f-42d6-99e2-fdc0c6baecfa"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191149Z:c9daf0ad-647f-42d6-99e2-fdc0c6baecfa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "15c73396-e54a-4bcc-bd54-c5dd07d0c120"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-request-id": [
+ "f08620be-d8f4-42fa-b6aa-5036c7832777"
+ ],
+ "x-ms-correlation-request-id": [
+ "f08620be-d8f4-42fa-b6aa-5036c7832777"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191150Z:f08620be-d8f4-42fa-b6aa-5036c7832777"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "702c0012-7ba4-4564-aebf-4b61d9e528a0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-request-id": [
+ "65ba3a6a-d3c3-4da4-a558-6a3b308b0e5a"
+ ],
+ "x-ms-correlation-request-id": [
+ "65ba3a6a-d3c3-4da4-a558-6a3b308b0e5a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191150Z:65ba3a6a-d3c3-4da4-a558-6a3b308b0e5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38155f9d-ada6-43b2-87d2-bc58675b730a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-request-id": [
+ "084bf1b4-0773-414f-adfb-c9e0e06e2244"
+ ],
+ "x-ms-correlation-request-id": [
+ "084bf1b4-0773-414f-adfb-c9e0e06e2244"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191150Z:084bf1b4-0773-414f-adfb-c9e0e06e2244"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d25d2691-8791-48a7-b9c6-dc9bcf67276f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-request-id": [
+ "384edb43-c030-4484-be3b-66c3b61db528"
+ ],
+ "x-ms-correlation-request-id": [
+ "384edb43-c030-4484-be3b-66c3b61db528"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191151Z:384edb43-c030-4484-be3b-66c3b61db528"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17544ea8-6df6-4c4a-9f00-3cefdf7d0c42"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-request-id": [
+ "6b612678-1c41-4f97-9edc-d571c6629b53"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b612678-1c41-4f97-9edc-d571c6629b53"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191151Z:6b612678-1c41-4f97-9edc-d571c6629b53"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fd18056e-c5f8-494a-8332-2430d260e3d5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-request-id": [
+ "2948fb79-a4f8-44f0-80eb-c7462ae95870"
+ ],
+ "x-ms-correlation-request-id": [
+ "2948fb79-a4f8-44f0-80eb-c7462ae95870"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191152Z:2948fb79-a4f8-44f0-80eb-c7462ae95870"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f942a43-0433-411e-b03a-5456d74ae305"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-request-id": [
+ "6650a48a-4d71-4c8c-8449-d18f6dd7e041"
+ ],
+ "x-ms-correlation-request-id": [
+ "6650a48a-4d71-4c8c-8449-d18f6dd7e041"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191152Z:6650a48a-4d71-4c8c-8449-d18f6dd7e041"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f1fd8a3f-bcc9-410d-807e-c4adce7f22d7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11948"
],
"x-ms-request-id": [
- "944b6764-6d79-4843-af9a-82b6e76df6f4"
+ "c6221fe7-361a-4f79-9438-0afa64bd61ca"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6221fe7-361a-4f79-9438-0afa64bd61ca"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191152Z:c6221fe7-361a-4f79-9438-0afa64bd61ca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e21f48d2-aac3-4763-80a0-3eb9794640e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-request-id": [
+ "ecb0a34d-97f2-44a8-abff-addeb9d051a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "ecb0a34d-97f2-44a8-abff-addeb9d051a1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191153Z:ecb0a34d-97f2-44a8-abff-addeb9d051a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b7edf4e2-1a42-4479-8d86-136aa286cccd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-request-id": [
+ "f4afe81f-0e23-4b2d-8b5f-903e8408a13b"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4afe81f-0e23-4b2d-8b5f-903e8408a13b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191153Z:f4afe81f-0e23-4b2d-8b5f-903e8408a13b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "49e86644-e9c2-42ec-946e-986b98ce97d4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-request-id": [
+ "546e194a-effc-48a7-aa20-cbfdb1a85bb8"
+ ],
+ "x-ms-correlation-request-id": [
+ "546e194a-effc-48a7-aa20-cbfdb1a85bb8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191153Z:546e194a-effc-48a7-aa20-cbfdb1a85bb8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "22e6de0e-aeff-43f6-8493-0a02cc5ba74a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-request-id": [
+ "03105d80-17e8-4928-9a4f-c57891e99de8"
+ ],
+ "x-ms-correlation-request-id": [
+ "03105d80-17e8-4928-9a4f-c57891e99de8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191154Z:03105d80-17e8-4928-9a4f-c57891e99de8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bcf63fb7-7eb8-4a35-b620-f4c03839cda2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-request-id": [
+ "8322e9f9-2ee3-4609-ac79-23030a40f7b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "8322e9f9-2ee3-4609-ac79-23030a40f7b8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191154Z:8322e9f9-2ee3-4609-ac79-23030a40f7b8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12385dc0-a0ea-4e6a-a442-fc7ab9418932"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-request-id": [
+ "bc0cd08b-dc9d-4b89-8a3d-329022f8797b"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc0cd08b-dc9d-4b89-8a3d-329022f8797b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191155Z:bc0cd08b-dc9d-4b89-8a3d-329022f8797b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d8c49c72-89e3-4b66-8d3a-cfd24dd31a04"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-request-id": [
+ "d6db9bc6-7e6a-42dc-bbd9-1e6b95de426b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6db9bc6-7e6a-42dc-bbd9-1e6b95de426b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191155Z:d6db9bc6-7e6a-42dc-bbd9-1e6b95de426b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d288a15f-7bbf-426c-ad68-3b657263c007"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
+ "x-ms-request-id": [
+ "e441dfad-7cb1-47eb-aaf0-1655682dc7de"
+ ],
+ "x-ms-correlation-request-id": [
+ "e441dfad-7cb1-47eb-aaf0-1655682dc7de"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191155Z:e441dfad-7cb1-47eb-aaf0-1655682dc7de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "667fee46-e62f-4dab-bb35-46c2231f1dc3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11930"
+ ],
+ "x-ms-request-id": [
+ "5386a879-8ad5-4215-ad6a-025891d432f4"
+ ],
+ "x-ms-correlation-request-id": [
+ "5386a879-8ad5-4215-ad6a-025891d432f4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191156Z:5386a879-8ad5-4215-ad6a-025891d432f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1499c288-e55a-4fc5-9aa4-c0923e84b4b7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11928"
+ ],
+ "x-ms-request-id": [
+ "b02fee79-b0a4-433c-91fe-270b31fd7fe1"
+ ],
+ "x-ms-correlation-request-id": [
+ "b02fee79-b0a4-433c-91fe-270b31fd7fe1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191156Z:b02fee79-b0a4-433c-91fe-270b31fd7fe1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c00c32ab-3647-4053-9b39-5dc2fd4e7cf0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11926"
+ ],
+ "x-ms-request-id": [
+ "b0410070-26d4-489b-84e8-16530ed3e67c"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0410070-26d4-489b-84e8-16530ed3e67c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191156Z:b0410070-26d4-489b-84e8-16530ed3e67c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c511f68b-c429-49cf-ad8c-b1ad805d6f1f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11924"
+ ],
+ "x-ms-request-id": [
+ "cae43667-2c79-467f-ba92-b29cee83a491"
+ ],
+ "x-ms-correlation-request-id": [
+ "cae43667-2c79-467f-ba92-b29cee83a491"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191157Z:cae43667-2c79-467f-ba92-b29cee83a491"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ec051da-0f02-4a20-a4ec-956eb32bf413"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11922"
+ ],
+ "x-ms-request-id": [
+ "84b385c3-8508-4215-914d-ebf43815def7"
+ ],
+ "x-ms-correlation-request-id": [
+ "84b385c3-8508-4215-914d-ebf43815def7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191157Z:84b385c3-8508-4215-914d-ebf43815def7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8b8d6cb2-d3fd-43d0-bf6a-34632345494b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11920"
+ ],
+ "x-ms-request-id": [
+ "1811999d-f8b1-4695-8cc5-5e968db31a59"
+ ],
+ "x-ms-correlation-request-id": [
+ "1811999d-f8b1-4695-8cc5-5e968db31a59"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191158Z:1811999d-f8b1-4695-8cc5-5e968db31a59"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6cb4d82-ace1-4a85-8946-bd46333ef72c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11918"
+ ],
+ "x-ms-request-id": [
+ "2f7bd52c-21d3-4811-ad5e-bb2fd53bbdf5"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f7bd52c-21d3-4811-ad5e-bb2fd53bbdf5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191158Z:2f7bd52c-21d3-4811-ad5e-bb2fd53bbdf5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "281549cc-124e-40e5-baff-82626153b08f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11916"
+ ],
+ "x-ms-request-id": [
+ "c3f3f9ff-0333-487a-86a5-bff810f6efa9"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3f3f9ff-0333-487a-86a5-bff810f6efa9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191158Z:c3f3f9ff-0333-487a-86a5-bff810f6efa9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6f97687-45a1-4b0f-a0a5-f6d84d011f59"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11914"
+ ],
+ "x-ms-request-id": [
+ "886f30da-5f87-4458-92e6-eafdd80cff28"
+ ],
+ "x-ms-correlation-request-id": [
+ "886f30da-5f87-4458-92e6-eafdd80cff28"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191159Z:886f30da-5f87-4458-92e6-eafdd80cff28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e0e868bb-d0f6-43ec-9395-8bba943dc73f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11912"
+ ],
+ "x-ms-request-id": [
+ "9ac121bc-398f-4b73-8b77-944823927bbd"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ac121bc-398f-4b73-8b77-944823927bbd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191159Z:9ac121bc-398f-4b73-8b77-944823927bbd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1cc08867-bb45-4672-8fe4-ad66385953ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11910"
+ ],
+ "x-ms-request-id": [
+ "8976daf0-b4a5-46e6-a37b-c7c90a423fa6"
+ ],
+ "x-ms-correlation-request-id": [
+ "8976daf0-b4a5-46e6-a37b-c7c90a423fa6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191159Z:8976daf0-b4a5-46e6-a37b-c7c90a423fa6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:11:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7578e507-03de-4f74-a5f7-c01bd42a33d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11908"
+ ],
+ "x-ms-request-id": [
+ "01d5e1ac-5bfc-46fa-a8b6-7f885cf13ac2"
+ ],
+ "x-ms-correlation-request-id": [
+ "01d5e1ac-5bfc-46fa-a8b6-7f885cf13ac2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191200Z:01d5e1ac-5bfc-46fa-a8b6-7f885cf13ac2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "732c5b3a-3bb9-4226-85e8-e38f09a01386"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11906"
+ ],
+ "x-ms-request-id": [
+ "6a097fbb-253f-4f2b-95b4-96e88ab8900b"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a097fbb-253f-4f2b-95b4-96e88ab8900b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191200Z:6a097fbb-253f-4f2b-95b4-96e88ab8900b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eebb7916-9b93-4096-843f-669e07d17fea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11904"
+ ],
+ "x-ms-request-id": [
+ "ee6c3961-d921-425d-96b9-00a821c2fda3"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee6c3961-d921-425d-96b9-00a821c2fda3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191201Z:ee6c3961-d921-425d-96b9-00a821c2fda3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98df23c8-f48b-4e24-a555-c4c3afd9191f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11902"
+ ],
+ "x-ms-request-id": [
+ "e73182cb-d780-49db-ada7-4ddcdd9dafe3"
+ ],
+ "x-ms-correlation-request-id": [
+ "e73182cb-d780-49db-ada7-4ddcdd9dafe3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191201Z:e73182cb-d780-49db-ada7-4ddcdd9dafe3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9d109526-d288-4cee-8504-9d0a27578d6e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11900"
+ ],
+ "x-ms-request-id": [
+ "334d4a26-df6a-4c29-a7ba-877901e4f79c"
+ ],
+ "x-ms-correlation-request-id": [
+ "334d4a26-df6a-4c29-a7ba-877901e4f79c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191201Z:334d4a26-df6a-4c29-a7ba-877901e4f79c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c7b0fc6-043d-422e-b5e5-f93c8075ccf6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11898"
+ ],
+ "x-ms-request-id": [
+ "33b84abd-93c1-4bc4-8a1a-bfb7ba832761"
+ ],
+ "x-ms-correlation-request-id": [
+ "33b84abd-93c1-4bc4-8a1a-bfb7ba832761"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191202Z:33b84abd-93c1-4bc4-8a1a-bfb7ba832761"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b01918d6-1943-48d2-833d-a8eefb01e05b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11896"
+ ],
+ "x-ms-request-id": [
+ "392431d7-5706-405a-b149-f88631c972b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "392431d7-5706-405a-b149-f88631c972b6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191202Z:392431d7-5706-405a-b149-f88631c972b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "976f5de1-c3e2-4845-aca8-93aebfa083a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11894"
+ ],
+ "x-ms-request-id": [
+ "48ef2465-f5a0-452a-97cd-a31a2cffcfe0"
+ ],
+ "x-ms-correlation-request-id": [
+ "48ef2465-f5a0-452a-97cd-a31a2cffcfe0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191202Z:48ef2465-f5a0-452a-97cd-a31a2cffcfe0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1474f1ae-9dfb-4d72-bcc9-d4bb8f88944a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11892"
+ ],
+ "x-ms-request-id": [
+ "6332282b-b63c-484a-aebd-d52cc0f4c81c"
+ ],
+ "x-ms-correlation-request-id": [
+ "6332282b-b63c-484a-aebd-d52cc0f4c81c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191203Z:6332282b-b63c-484a-aebd-d52cc0f4c81c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c47d5f3-e9d9-41f4-90e9-de5f6a38d331"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11890"
+ ],
+ "x-ms-request-id": [
+ "f0d83a98-b43a-4edc-84c0-3de72d0e5289"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0d83a98-b43a-4edc-84c0-3de72d0e5289"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191203Z:f0d83a98-b43a-4edc-84c0-3de72d0e5289"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "65f01d4c-6549-47ba-83d5-d4f8c3d5c231"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11888"
+ ],
+ "x-ms-request-id": [
+ "fd5fe016-0ae9-4721-a654-7b05e024783f"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd5fe016-0ae9-4721-a654-7b05e024783f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191204Z:fd5fe016-0ae9-4721-a654-7b05e024783f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ea95f8b8-cde3-4d03-b0d4-44f2efd699e2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11886"
+ ],
+ "x-ms-request-id": [
+ "41018dc2-4db2-4f9b-9e19-8467647fb3e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "41018dc2-4db2-4f9b-9e19-8467647fb3e7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191204Z:41018dc2-4db2-4f9b-9e19-8467647fb3e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23622a72-cdab-44b9-a24c-9e79397c7df2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11884"
+ ],
+ "x-ms-request-id": [
+ "da2830f9-d10a-4521-a521-ea4845011d6f"
+ ],
+ "x-ms-correlation-request-id": [
+ "da2830f9-d10a-4521-a521-ea4845011d6f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191204Z:da2830f9-d10a-4521-a521-ea4845011d6f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48047aff-6728-4b0b-8f64-49daa74ec9e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11882"
+ ],
+ "x-ms-request-id": [
+ "e157e1b4-5cba-4907-8be1-76253bd0f8be"
+ ],
+ "x-ms-correlation-request-id": [
+ "e157e1b4-5cba-4907-8be1-76253bd0f8be"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191205Z:e157e1b4-5cba-4907-8be1-76253bd0f8be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "476761e2-3dcf-4d57-a024-c3a505c093d4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11880"
+ ],
+ "x-ms-request-id": [
+ "985850f7-cc46-4bfd-970e-1afc6594200e"
+ ],
+ "x-ms-correlation-request-id": [
+ "985850f7-cc46-4bfd-970e-1afc6594200e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191205Z:985850f7-cc46-4bfd-970e-1afc6594200e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "db6898a8-8cc6-41c5-9eb8-32081a8ad5fd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11878"
+ ],
+ "x-ms-request-id": [
+ "2154b0ce-3451-4b8d-9fc2-41df57c8e05a"
+ ],
+ "x-ms-correlation-request-id": [
+ "2154b0ce-3451-4b8d-9fc2-41df57c8e05a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191205Z:2154b0ce-3451-4b8d-9fc2-41df57c8e05a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e245a47-91e3-4f73-8042-cf8a8a18eb09"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11876"
+ ],
+ "x-ms-request-id": [
+ "190b1234-ce2e-49ee-92ff-3b20a0cec582"
+ ],
+ "x-ms-correlation-request-id": [
+ "190b1234-ce2e-49ee-92ff-3b20a0cec582"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191206Z:190b1234-ce2e-49ee-92ff-3b20a0cec582"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8dff0733-2f6a-4a6c-94f7-9760a649b258"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11874"
+ ],
+ "x-ms-request-id": [
+ "3cb7e713-e910-4a19-aead-2777c71569b2"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cb7e713-e910-4a19-aead-2777c71569b2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191206Z:3cb7e713-e910-4a19-aead-2777c71569b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "028fd50b-bd7a-4aa6-9fcd-dd57e90ff981"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11872"
+ ],
+ "x-ms-request-id": [
+ "44de0c93-7b8f-45fa-a567-8caf524a8da5"
+ ],
+ "x-ms-correlation-request-id": [
+ "44de0c93-7b8f-45fa-a567-8caf524a8da5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191206Z:44de0c93-7b8f-45fa-a567-8caf524a8da5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "983a02ff-7b2b-4e5b-8364-1b9f9b13551e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11870"
+ ],
+ "x-ms-request-id": [
+ "64cfafe5-331d-43df-a210-71894b509f0f"
+ ],
+ "x-ms-correlation-request-id": [
+ "64cfafe5-331d-43df-a210-71894b509f0f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191207Z:64cfafe5-331d-43df-a210-71894b509f0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e786e1b-59f4-4913-b159-526a2bbf660b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11868"
+ ],
+ "x-ms-request-id": [
+ "3a75799c-3402-4bf8-a85c-9b82545914e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a75799c-3402-4bf8-a85c-9b82545914e8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191207Z:3a75799c-3402-4bf8-a85c-9b82545914e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45b4794-66ec-4237-8b93-2a7d22dc76ee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11866"
+ ],
+ "x-ms-request-id": [
+ "f72e595c-8933-4b7e-a802-1e2fd5daacf1"
+ ],
+ "x-ms-correlation-request-id": [
+ "f72e595c-8933-4b7e-a802-1e2fd5daacf1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191208Z:f72e595c-8933-4b7e-a802-1e2fd5daacf1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ba42e0aa-1cc8-4e1f-8775-e8266474fccc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11864"
+ ],
+ "x-ms-request-id": [
+ "771cc8dd-bc20-4bdf-9906-71ed7de7d053"
+ ],
+ "x-ms-correlation-request-id": [
+ "771cc8dd-bc20-4bdf-9906-71ed7de7d053"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191208Z:771cc8dd-bc20-4bdf-9906-71ed7de7d053"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "93ec175f-29ef-4b81-a95c-90c56b630104"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11862"
+ ],
+ "x-ms-request-id": [
+ "10264978-4ad3-41a1-83a1-71f752153634"
+ ],
+ "x-ms-correlation-request-id": [
+ "10264978-4ad3-41a1-83a1-71f752153634"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191209Z:10264978-4ad3-41a1-83a1-71f752153634"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f09f99a5-20c9-4a9e-823e-5145b9cdcf67"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11860"
+ ],
+ "x-ms-request-id": [
+ "28783597-d465-4a83-b913-30b8c2cf18ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "28783597-d465-4a83-b913-30b8c2cf18ad"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191209Z:28783597-d465-4a83-b913-30b8c2cf18ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8a1f3758-90c2-4b25-82cd-ade2675f914c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11858"
+ ],
+ "x-ms-request-id": [
+ "9aa6b7a9-29bc-4515-9b6f-6abfae8626e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "9aa6b7a9-29bc-4515-9b6f-6abfae8626e8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191209Z:9aa6b7a9-29bc-4515-9b6f-6abfae8626e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "32add047-5bd9-4710-b95e-98272fe22faf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11856"
+ ],
+ "x-ms-request-id": [
+ "b7eae85b-a640-44f9-ba07-623865fd1fca"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7eae85b-a640-44f9-ba07-623865fd1fca"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191210Z:b7eae85b-a640-44f9-ba07-623865fd1fca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e3134e70-cbbe-40e0-be85-7d42a730b090"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11854"
+ ],
+ "x-ms-request-id": [
+ "50d7aab3-8a99-4bca-9d33-1e557ed76107"
+ ],
+ "x-ms-correlation-request-id": [
+ "50d7aab3-8a99-4bca-9d33-1e557ed76107"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191210Z:50d7aab3-8a99-4bca-9d33-1e557ed76107"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4eecf04d-4332-4222-9259-e0ea2d247baa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11852"
+ ],
+ "x-ms-request-id": [
+ "1445e6f2-2472-4eed-8f7e-75e6638ceba6"
+ ],
+ "x-ms-correlation-request-id": [
+ "1445e6f2-2472-4eed-8f7e-75e6638ceba6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191210Z:1445e6f2-2472-4eed-8f7e-75e6638ceba6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ed7a51c-2801-43bc-a63f-7cdcbe6d6429"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11850"
+ ],
+ "x-ms-request-id": [
+ "6bc5e8ee-286d-4804-a1b8-0057921401d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "6bc5e8ee-286d-4804-a1b8-0057921401d7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191211Z:6bc5e8ee-286d-4804-a1b8-0057921401d7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "41531bc5-9a97-4a74-a6ff-964f410ae945"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11848"
+ ],
+ "x-ms-request-id": [
+ "2998e0a1-0bcd-4d15-a078-00bc6de5825a"
+ ],
+ "x-ms-correlation-request-id": [
+ "2998e0a1-0bcd-4d15-a078-00bc6de5825a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191211Z:2998e0a1-0bcd-4d15-a078-00bc6de5825a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "990b897e-94ca-42e1-bf41-a3756531bdbd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11846"
+ ],
+ "x-ms-request-id": [
+ "32d5f72e-9149-4874-a634-bdae2183fe47"
+ ],
+ "x-ms-correlation-request-id": [
+ "32d5f72e-9149-4874-a634-bdae2183fe47"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191212Z:32d5f72e-9149-4874-a634-bdae2183fe47"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8cdceee-c0e7-4acb-bab4-a3348f61a1e4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11844"
+ ],
+ "x-ms-request-id": [
+ "b1ca162a-8878-466c-ba3b-a33ab7834bec"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1ca162a-8878-466c-ba3b-a33ab7834bec"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191212Z:b1ca162a-8878-466c-ba3b-a33ab7834bec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fd1c31b6-07dd-435d-83ee-78b67b8b65b9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11842"
+ ],
+ "x-ms-request-id": [
+ "fcc0e8ae-233d-4566-839f-af01cddce0c1"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcc0e8ae-233d-4566-839f-af01cddce0c1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191212Z:fcc0e8ae-233d-4566-839f-af01cddce0c1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d14f1441-0715-445c-a34f-f2666aff83be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11840"
+ ],
+ "x-ms-request-id": [
+ "cfc2a3a8-e032-4bc8-9543-6d718da23bab"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfc2a3a8-e032-4bc8-9543-6d718da23bab"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191213Z:cfc2a3a8-e032-4bc8-9543-6d718da23bab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2241866b-d55c-4bf8-85f4-cc6a253e9ae7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11838"
+ ],
+ "x-ms-request-id": [
+ "5cec90b0-b993-411c-a910-8f5c6ea9d9fd"
+ ],
+ "x-ms-correlation-request-id": [
+ "5cec90b0-b993-411c-a910-8f5c6ea9d9fd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191213Z:5cec90b0-b993-411c-a910-8f5c6ea9d9fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00f32ec9-dbe9-4cf8-b5e1-5680998b264a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11836"
+ ],
+ "x-ms-request-id": [
+ "e95c647c-bbb7-4bee-b545-ee8eec69e15d"
+ ],
+ "x-ms-correlation-request-id": [
+ "e95c647c-bbb7-4bee-b545-ee8eec69e15d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191213Z:e95c647c-bbb7-4bee-b545-ee8eec69e15d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b348af24-f27b-4b38-a37d-919e8adfa6bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11834"
+ ],
+ "x-ms-request-id": [
+ "89fdd11e-cd96-4926-8736-92dba4c7211c"
+ ],
+ "x-ms-correlation-request-id": [
+ "89fdd11e-cd96-4926-8736-92dba4c7211c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191214Z:89fdd11e-cd96-4926-8736-92dba4c7211c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3643cb10-3619-46c5-8b83-f3197f132b42"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11832"
+ ],
+ "x-ms-request-id": [
+ "29161d1f-b47e-430f-b2ff-5727a6e6a1ed"
+ ],
+ "x-ms-correlation-request-id": [
+ "29161d1f-b47e-430f-b2ff-5727a6e6a1ed"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191214Z:29161d1f-b47e-430f-b2ff-5727a6e6a1ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1424"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:11:43.7976396Z\",\r\n \"duration\": \"PT2.1926386S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f5d59b8e-d59b-4109-a1d1-566626253058"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11830"
+ ],
+ "x-ms-request-id": [
+ "be8da0bb-5bac-4276-bf5c-2af010fcb0d4"
+ ],
+ "x-ms-correlation-request-id": [
+ "be8da0bb-5bac-4276-bf5c-2af010fcb0d4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191214Z:be8da0bb-5bac-4276-bf5c-2af010fcb0d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1423"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:14.784445Z\",\r\n \"duration\": \"PT33.179444S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39b70203-4b09-4e44-bfa0-df31c74fb64e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11828"
+ ],
+ "x-ms-request-id": [
+ "f8af6225-cec8-4461-9f32-ed5de85911e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8af6225-cec8-4461-9f32-ed5de85911e6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191215Z:f8af6225-cec8-4461-9f32-ed5de85911e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1423"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:14.784445Z\",\r\n \"duration\": \"PT33.179444S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bd489c3d-647f-4384-8606-9e2d0c613da5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11826"
+ ],
+ "x-ms-request-id": [
+ "6e2ed794-a58c-4eda-850d-633201902f2b"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e2ed794-a58c-4eda-850d-633201902f2b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191215Z:6e2ed794-a58c-4eda-850d-633201902f2b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.3671095Z\",\r\n \"duration\": \"PT33.7621085S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f50160b6-8cae-4ed5-af29-93cf540bc258"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11824"
+ ],
+ "x-ms-request-id": [
+ "341ec177-17d4-4969-8c12-b37e0ad76dc2"
+ ],
+ "x-ms-correlation-request-id": [
+ "341ec177-17d4-4969-8c12-b37e0ad76dc2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191216Z:341ec177-17d4-4969-8c12-b37e0ad76dc2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.7130588Z\",\r\n \"duration\": \"PT34.1080578S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07ccd5d9-9c72-4c34-815b-38cbe6c50708"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11822"
+ ],
+ "x-ms-request-id": [
+ "da119a16-625e-49d1-a18f-45507414a05f"
+ ],
+ "x-ms-correlation-request-id": [
+ "da119a16-625e-49d1-a18f-45507414a05f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191216Z:da119a16-625e-49d1-a18f-45507414a05f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.7130588Z\",\r\n \"duration\": \"PT34.1080578S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1400e322-7132-4c20-ada7-f53a7bf87543"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11820"
+ ],
+ "x-ms-request-id": [
+ "1096abe3-d0aa-433c-a403-1dc198f7e3b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "1096abe3-d0aa-433c-a403-1dc198f7e3b1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191217Z:1096abe3-d0aa-433c-a403-1dc198f7e3b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.7130588Z\",\r\n \"duration\": \"PT34.1080578S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3cc78eff-cf8a-48ed-8512-2b144e8b3133"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11818"
+ ],
+ "x-ms-request-id": [
+ "9cc140da-2373-42e1-b362-49155de318fc"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cc140da-2373-42e1-b362-49155de318fc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191217Z:9cc140da-2373-42e1-b362-49155de318fc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:17 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.7130588Z\",\r\n \"duration\": \"PT34.1080578S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "47b53cf4-01fd-45e7-b792-355e16a05f3c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11816"
+ ],
+ "x-ms-request-id": [
+ "096a0f10-6a8d-451c-9f06-7940b25aed51"
+ ],
+ "x-ms-correlation-request-id": [
+ "096a0f10-6a8d-451c-9f06-7940b25aed51"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191217Z:096a0f10-6a8d-451c-9f06-7940b25aed51"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:17 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.7130588Z\",\r\n \"duration\": \"PT34.1080578S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07c960b7-8302-44f7-b013-fcb1cca23a3d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11814"
+ ],
+ "x-ms-request-id": [
+ "8115f30a-421e-4db1-bea3-e0b9c54b5dec"
+ ],
+ "x-ms-correlation-request-id": [
+ "8115f30a-421e-4db1-bea3-e0b9c54b5dec"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191218Z:8115f30a-421e-4db1-bea3-e0b9c54b5dec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:15.7130588Z\",\r\n \"duration\": \"PT34.1080578S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d3e18247-9073-49dc-b14b-d9b10ae302d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11812"
+ ],
+ "x-ms-request-id": [
+ "f368ad5e-455d-4ad9-8e90-5c6020e38c8c"
+ ],
+ "x-ms-correlation-request-id": [
+ "f368ad5e-455d-4ad9-8e90-5c6020e38c8c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191218Z:f368ad5e-455d-4ad9-8e90-5c6020e38c8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af370a64-4f37-4077-a38b-20be5c3f10ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11810"
+ ],
+ "x-ms-request-id": [
+ "f3c87604-08f2-4a25-9eec-df9655d9871d"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3c87604-08f2-4a25-9eec-df9655d9871d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191219Z:f3c87604-08f2-4a25-9eec-df9655d9871d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6fbbd23d-31c3-4889-a25f-1880e28e8b2e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11808"
+ ],
+ "x-ms-request-id": [
+ "39f0cc92-f1ea-497d-806c-769c9fe9fc86"
+ ],
+ "x-ms-correlation-request-id": [
+ "39f0cc92-f1ea-497d-806c-769c9fe9fc86"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191219Z:39f0cc92-f1ea-497d-806c-769c9fe9fc86"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13ad2407-a5cb-46d3-8e07-f7bbeecad33f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11806"
+ ],
+ "x-ms-request-id": [
+ "446c1bdb-48b6-439d-b0e6-f7d6c749b708"
+ ],
+ "x-ms-correlation-request-id": [
+ "446c1bdb-48b6-439d-b0e6-f7d6c749b708"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191220Z:446c1bdb-48b6-439d-b0e6-f7d6c749b708"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8526ba45-5e12-4772-b6ec-c78b1733777b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11804"
+ ],
+ "x-ms-request-id": [
+ "fd9fe979-d336-4008-b770-52832bcd4e09"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd9fe979-d336-4008-b770-52832bcd4e09"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191220Z:fd9fe979-d336-4008-b770-52832bcd4e09"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "634ff855-0fa5-4791-9ff6-6db563a0b8b7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11802"
+ ],
+ "x-ms-request-id": [
+ "758f4645-2cbe-41e1-9cb2-b7155b219653"
+ ],
+ "x-ms-correlation-request-id": [
+ "758f4645-2cbe-41e1-9cb2-b7155b219653"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191220Z:758f4645-2cbe-41e1-9cb2-b7155b219653"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "905c05cb-858f-4ef3-8c22-1fbd0ed0f65a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11800"
+ ],
+ "x-ms-request-id": [
+ "7a3e7a17-d4d0-42ca-b41a-f1eb8da453eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a3e7a17-d4d0-42ca-b41a-f1eb8da453eb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191221Z:7a3e7a17-d4d0-42ca-b41a-f1eb8da453eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d39912f1-5b8c-4d03-84f4-e5e5b0066bff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11798"
+ ],
+ "x-ms-request-id": [
+ "6c0cb983-dbc6-4214-9bda-47e425004c3d"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c0cb983-dbc6-4214-9bda-47e425004c3d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191221Z:6c0cb983-dbc6-4214-9bda-47e425004c3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67553d52-e993-40fa-9dbd-6297277c090d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11796"
+ ],
+ "x-ms-request-id": [
+ "edcb626c-4acb-45a6-8750-d7cd64b1a4b0"
+ ],
+ "x-ms-correlation-request-id": [
+ "edcb626c-4acb-45a6-8750-d7cd64b1a4b0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191222Z:edcb626c-4acb-45a6-8750-d7cd64b1a4b0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "79a01ebe-45eb-481e-9ad2-37f99bd62057"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11794"
+ ],
+ "x-ms-request-id": [
+ "54bb533d-ca8c-45d6-b637-e9b96dbb5983"
+ ],
+ "x-ms-correlation-request-id": [
+ "54bb533d-ca8c-45d6-b637-e9b96dbb5983"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191222Z:54bb533d-ca8c-45d6-b637-e9b96dbb5983"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ea491d98-69c0-4ae3-881e-66dac3c42b0f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11792"
+ ],
+ "x-ms-request-id": [
+ "dca9b39f-b310-40a2-957d-7e5b44bcf11d"
+ ],
+ "x-ms-correlation-request-id": [
+ "dca9b39f-b310-40a2-957d-7e5b44bcf11d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191222Z:dca9b39f-b310-40a2-957d-7e5b44bcf11d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7d6408c9-80fa-4933-b78f-ac31a5d4feed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11790"
+ ],
+ "x-ms-request-id": [
+ "f2ab8b4b-29e9-43d3-96ae-cc51b149ce4a"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2ab8b4b-29e9-43d3-96ae-cc51b149ce4a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191223Z:f2ab8b4b-29e9-43d3-96ae-cc51b149ce4a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:18.5107723Z\",\r\n \"duration\": \"PT36.9057713S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7cced626-4672-45dd-9527-ceb51fcc2371"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11788"
+ ],
+ "x-ms-request-id": [
+ "dc5c6c1d-27e2-4907-a483-ca650f024e50"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc5c6c1d-27e2-4907-a483-ca650f024e50"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191223Z:dc5c6c1d-27e2-4907-a483-ca650f024e50"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "548c5f47-0506-4df6-acc6-fecf7779fc0c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11786"
+ ],
+ "x-ms-request-id": [
+ "b6c47d52-b3ec-4690-922a-fedd62472c48"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6c47d52-b3ec-4690-922a-fedd62472c48"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191224Z:b6c47d52-b3ec-4690-922a-fedd62472c48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "10354aee-f100-4cda-afd4-f62d1d3cbab0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11784"
+ ],
+ "x-ms-request-id": [
+ "e49f0152-a1fc-4173-ac3f-31aea26a79dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "e49f0152-a1fc-4173-ac3f-31aea26a79dd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191224Z:e49f0152-a1fc-4173-ac3f-31aea26a79dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ea75382-3db4-48cd-9c47-129a86777dc3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11782"
+ ],
+ "x-ms-request-id": [
+ "71d9f2c9-369f-40eb-a320-86520d34efcd"
+ ],
+ "x-ms-correlation-request-id": [
+ "71d9f2c9-369f-40eb-a320-86520d34efcd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191225Z:71d9f2c9-369f-40eb-a320-86520d34efcd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "90fdc8b7-8b21-489b-be08-ede7a07d621c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11780"
+ ],
+ "x-ms-request-id": [
+ "43a41850-3b90-43a5-9b2d-866c8e860fd6"
],
"x-ms-correlation-request-id": [
- "944b6764-6d79-4843-af9a-82b6e76df6f4"
+ "43a41850-3b90-43a5-9b2d-866c8e860fd6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223138Z:944b6764-6d79-4843-af9a-82b6e76df6f4"
+ "NORTHCENTRALUS:20200519T191225Z:43a41850-3b90-43a5-9b2d-866c8e860fd6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12480,7 +23316,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:38 GMT"
+ "Tue, 19 May 2020 19:12:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12489,20 +23325,20 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9b31e3c-1bfd-4207-9533-74bc0eae5109"
+ "825b02c1-6091-4e26-bc40-6fcccf136586"
],
"Accept-Language": [
"en-US"
@@ -12525,16 +23361,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11778"
],
"x-ms-request-id": [
- "6c84d2e3-5aab-4b1a-9054-da163dbfe2da"
+ "dc685bd4-2cb3-4449-9616-75e2e58ab976"
],
"x-ms-correlation-request-id": [
- "6c84d2e3-5aab-4b1a-9054-da163dbfe2da"
+ "dc685bd4-2cb3-4449-9616-75e2e58ab976"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223139Z:6c84d2e3-5aab-4b1a-9054-da163dbfe2da"
+ "NORTHCENTRALUS:20200519T191225Z:dc685bd4-2cb3-4449-9616-75e2e58ab976"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12543,7 +23379,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:38 GMT"
+ "Tue, 19 May 2020 19:12:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12552,20 +23388,20 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37470122-73dd-458c-9014-489a6e63b428"
+ "d65aa38f-a574-4076-976c-3ba4f5cf5c68"
],
"Accept-Language": [
"en-US"
@@ -12588,16 +23424,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
+ "11776"
],
"x-ms-request-id": [
- "218b75a3-4a47-4800-b182-c7b14492a5cb"
+ "77595667-8cdc-4e09-8451-23741c58e9e6"
],
"x-ms-correlation-request-id": [
- "218b75a3-4a47-4800-b182-c7b14492a5cb"
+ "77595667-8cdc-4e09-8451-23741c58e9e6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223139Z:218b75a3-4a47-4800-b182-c7b14492a5cb"
+ "NORTHCENTRALUS:20200519T191226Z:77595667-8cdc-4e09-8451-23741c58e9e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12606,7 +23442,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:39 GMT"
+ "Tue, 19 May 2020 19:12:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12615,20 +23451,20 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5ec7811-f008-4339-a92e-5dacbb06f4f5"
+ "24196377-8207-4cbb-b6ce-5ce08192d161"
],
"Accept-Language": [
"en-US"
@@ -12651,16 +23487,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
+ "11774"
],
"x-ms-request-id": [
- "fac9c918-7156-4cff-8209-80a7a522b6dc"
+ "fea2b3ba-caf2-445c-b7aa-771cb6faf597"
],
"x-ms-correlation-request-id": [
- "fac9c918-7156-4cff-8209-80a7a522b6dc"
+ "fea2b3ba-caf2-445c-b7aa-771cb6faf597"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223140Z:fac9c918-7156-4cff-8209-80a7a522b6dc"
+ "NORTHCENTRALUS:20200519T191226Z:fea2b3ba-caf2-445c-b7aa-771cb6faf597"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12669,7 +23505,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:39 GMT"
+ "Tue, 19 May 2020 19:12:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12678,20 +23514,20 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff8d9933-47fe-4167-9acd-4385fa92ba7d"
+ "c78f32d3-c7ca-4c2a-a4b9-6efe86ab2054"
],
"Accept-Language": [
"en-US"
@@ -12714,16 +23550,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
+ "11772"
],
"x-ms-request-id": [
- "590e145b-35af-436f-9183-f1d7e070f689"
+ "fbb5df21-90e8-4236-825c-468cfad97928"
],
"x-ms-correlation-request-id": [
- "590e145b-35af-436f-9183-f1d7e070f689"
+ "fbb5df21-90e8-4236-825c-468cfad97928"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223140Z:590e145b-35af-436f-9183-f1d7e070f689"
+ "NORTHCENTRALUS:20200519T191227Z:fbb5df21-90e8-4236-825c-468cfad97928"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12732,7 +23568,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:40 GMT"
+ "Tue, 19 May 2020 19:12:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12741,20 +23577,20 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:36.5157452Z\",\r\n \"duration\": \"PT9.4385631S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "179f38df-667d-4f80-92db-a8191abcc80a"
+ "82439744-58a4-4397-9fa0-4d77b917e3ed"
],
"Accept-Language": [
"en-US"
@@ -12777,16 +23613,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11770"
],
"x-ms-request-id": [
- "f6180fd2-345f-47ec-95bd-18ad9f3f18da"
+ "f2256add-010d-4fd1-8bd6-a74b41a57d16"
],
"x-ms-correlation-request-id": [
- "f6180fd2-345f-47ec-95bd-18ad9f3f18da"
+ "f2256add-010d-4fd1-8bd6-a74b41a57d16"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223140Z:f6180fd2-345f-47ec-95bd-18ad9f3f18da"
+ "NORTHCENTRALUS:20200519T191227Z:f2256add-010d-4fd1-8bd6-a74b41a57d16"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12795,7 +23631,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:40 GMT"
+ "Tue, 19 May 2020 19:12:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12807,17 +23643,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aff50f7b-0f52-40b9-b2b3-f89dba2f0f03"
+ "4c549a2d-0412-441a-b018-5355c7b3d0c7"
],
"Accept-Language": [
"en-US"
@@ -12840,16 +23676,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11768"
],
"x-ms-request-id": [
- "0b87e4e6-adf0-4465-b524-553439a7957b"
+ "31e26f8a-5ce3-46e6-9ff4-275f169dde3c"
],
"x-ms-correlation-request-id": [
- "0b87e4e6-adf0-4465-b524-553439a7957b"
+ "31e26f8a-5ce3-46e6-9ff4-275f169dde3c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223141Z:0b87e4e6-adf0-4465-b524-553439a7957b"
+ "NORTHCENTRALUS:20200519T191227Z:31e26f8a-5ce3-46e6-9ff4-275f169dde3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12858,7 +23694,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:40 GMT"
+ "Tue, 19 May 2020 19:12:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12870,17 +23706,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "105dbb1e-2d8a-4ed6-8bce-e0b4b4d7d534"
+ "dc238c1f-4e04-474f-bef2-7a098312d921"
],
"Accept-Language": [
"en-US"
@@ -12903,16 +23739,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11766"
],
"x-ms-request-id": [
- "adfb7806-bf1e-4f4c-b819-b8e2a766a024"
+ "18377f8f-81ab-42d4-999c-9b3d2ee2aed5"
],
"x-ms-correlation-request-id": [
- "adfb7806-bf1e-4f4c-b819-b8e2a766a024"
+ "18377f8f-81ab-42d4-999c-9b3d2ee2aed5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223141Z:adfb7806-bf1e-4f4c-b819-b8e2a766a024"
+ "NORTHCENTRALUS:20200519T191228Z:18377f8f-81ab-42d4-999c-9b3d2ee2aed5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12921,7 +23757,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:41 GMT"
+ "Tue, 19 May 2020 19:12:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12933,17 +23769,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54df4975-b956-4e42-bbb8-672c9be5809f"
+ "9a2411f8-d29b-4ca8-9b09-2406d6f61a80"
],
"Accept-Language": [
"en-US"
@@ -12966,16 +23802,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11764"
],
"x-ms-request-id": [
- "757ce4af-7ddd-47f5-a937-3547978c7202"
+ "ff80354e-3cd8-41ff-9b2f-15c8232d8e2e"
],
"x-ms-correlation-request-id": [
- "757ce4af-7ddd-47f5-a937-3547978c7202"
+ "ff80354e-3cd8-41ff-9b2f-15c8232d8e2e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223142Z:757ce4af-7ddd-47f5-a937-3547978c7202"
+ "NORTHCENTRALUS:20200519T191228Z:ff80354e-3cd8-41ff-9b2f-15c8232d8e2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12984,7 +23820,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:41 GMT"
+ "Tue, 19 May 2020 19:12:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12996,17 +23832,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f373ea3d-edfc-4ee1-92a7-d7ead8446a85"
+ "d705cfb4-ca05-4d01-8da4-43296ac36adb"
],
"Accept-Language": [
"en-US"
@@ -13029,16 +23865,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11762"
],
"x-ms-request-id": [
- "08f47db9-86c1-499e-b4cf-5c03f879c8f9"
+ "356798d5-cd2a-428c-9fa9-d679d61137b9"
],
"x-ms-correlation-request-id": [
- "08f47db9-86c1-499e-b4cf-5c03f879c8f9"
+ "356798d5-cd2a-428c-9fa9-d679d61137b9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223142Z:08f47db9-86c1-499e-b4cf-5c03f879c8f9"
+ "NORTHCENTRALUS:20200519T191229Z:356798d5-cd2a-428c-9fa9-d679d61137b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13047,7 +23883,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:42 GMT"
+ "Tue, 19 May 2020 19:12:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13059,17 +23895,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d2244f2-3788-45fb-be7c-73c5fd9513ec"
+ "a3589b83-f521-41f1-ada8-51c3c6945628"
],
"Accept-Language": [
"en-US"
@@ -13092,16 +23928,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
+ "11760"
],
"x-ms-request-id": [
- "40b396ba-2539-42d9-8e75-b067d4d9828e"
+ "8c8d0c5d-410f-475b-b742-1a474027ff64"
],
"x-ms-correlation-request-id": [
- "40b396ba-2539-42d9-8e75-b067d4d9828e"
+ "8c8d0c5d-410f-475b-b742-1a474027ff64"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223142Z:40b396ba-2539-42d9-8e75-b067d4d9828e"
+ "NORTHCENTRALUS:20200519T191229Z:8c8d0c5d-410f-475b-b742-1a474027ff64"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13110,7 +23946,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:42 GMT"
+ "Tue, 19 May 2020 19:12:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13122,17 +23958,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3de951d-9ee0-46bb-b1cb-8dd6ee5055b5"
+ "f9b1a96f-ba4a-4dc3-9942-5bb9cd8b8d06"
],
"Accept-Language": [
"en-US"
@@ -13155,16 +23991,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
+ "11758"
],
"x-ms-request-id": [
- "8d4578ba-0daa-478f-ad03-9324c8abbaee"
+ "d60d14ca-93c6-484e-8137-b0c40794d28d"
],
"x-ms-correlation-request-id": [
- "8d4578ba-0daa-478f-ad03-9324c8abbaee"
+ "d60d14ca-93c6-484e-8137-b0c40794d28d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223143Z:8d4578ba-0daa-478f-ad03-9324c8abbaee"
+ "NORTHCENTRALUS:20200519T191230Z:d60d14ca-93c6-484e-8137-b0c40794d28d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13173,7 +24009,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:42 GMT"
+ "Tue, 19 May 2020 19:12:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13185,17 +24021,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b06144b-1ee8-4609-9dde-ce4ffdb19138"
+ "f1974771-bbf6-4c42-bcab-127d2a388b8c"
],
"Accept-Language": [
"en-US"
@@ -13218,16 +24054,268 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
+ "11756"
+ ],
+ "x-ms-request-id": [
+ "919904e9-861e-4212-b2e6-ae30cd9d9dff"
+ ],
+ "x-ms-correlation-request-id": [
+ "919904e9-861e-4212-b2e6-ae30cd9d9dff"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191230Z:919904e9-861e-4212-b2e6-ae30cd9d9dff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e1a7b40c-e82d-460c-9dc3-9ec586f5fe39"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11754"
+ ],
+ "x-ms-request-id": [
+ "acef1e43-799e-48fc-951c-1fcff20ef56f"
+ ],
+ "x-ms-correlation-request-id": [
+ "acef1e43-799e-48fc-951c-1fcff20ef56f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191230Z:acef1e43-799e-48fc-951c-1fcff20ef56f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0adefbaa-ed28-409e-a973-a289b328895f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11752"
+ ],
+ "x-ms-request-id": [
+ "1d3e68ab-31a8-4719-9d35-63a6a68919af"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d3e68ab-31a8-4719-9d35-63a6a68919af"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191231Z:1d3e68ab-31a8-4719-9d35-63a6a68919af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da036cd5-dbb3-4287-bda7-839e4fb6a950"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11750"
+ ],
+ "x-ms-request-id": [
+ "ee4f1041-8fd8-413c-9d2d-3d053e8b9e05"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee4f1041-8fd8-413c-9d2d-3d053e8b9e05"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T191231Z:ee4f1041-8fd8-413c-9d2d-3d053e8b9e05"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:12:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1425"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a0e80cdb-1d92-42c7-b4ef-db3db43e3e3e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11748"
],
"x-ms-request-id": [
- "d56e2465-fbd6-41d0-990a-49b28dee042a"
+ "5d06bcbc-ff84-49cb-af1a-fb4e6ad66b16"
],
"x-ms-correlation-request-id": [
- "d56e2465-fbd6-41d0-990a-49b28dee042a"
+ "5d06bcbc-ff84-49cb-af1a-fb4e6ad66b16"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223143Z:d56e2465-fbd6-41d0-990a-49b28dee042a"
+ "NORTHCENTRALUS:20200519T191232Z:5d06bcbc-ff84-49cb-af1a-fb4e6ad66b16"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13236,7 +24324,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:43 GMT"
+ "Tue, 19 May 2020 19:12:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13248,17 +24336,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1310ad70-c807-47b9-a092-45d01e6ced0f"
+ "e5aed8b4-0ad6-475b-925e-f51384b976e4"
],
"Accept-Language": [
"en-US"
@@ -13281,16 +24369,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
+ "11746"
],
"x-ms-request-id": [
- "0e3c826d-a504-41dc-9719-3322ae28bd28"
+ "05ab56a4-70b8-4b9a-92ef-0748ee683e62"
],
"x-ms-correlation-request-id": [
- "0e3c826d-a504-41dc-9719-3322ae28bd28"
+ "05ab56a4-70b8-4b9a-92ef-0748ee683e62"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223144Z:0e3c826d-a504-41dc-9719-3322ae28bd28"
+ "NORTHCENTRALUS:20200519T191232Z:05ab56a4-70b8-4b9a-92ef-0748ee683e62"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13299,7 +24387,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:43 GMT"
+ "Tue, 19 May 2020 19:12:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13311,17 +24399,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25104967-53f2-481b-bf66-3d4d63f9c1ad"
+ "12d63dd9-47bf-4bd4-9ce0-e3d3a914203f"
],
"Accept-Language": [
"en-US"
@@ -13344,16 +24432,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
+ "11744"
],
"x-ms-request-id": [
- "23dd7758-8d96-4735-888e-a2b1e4d7b8c7"
+ "c850ab09-fb10-4459-b9e6-c987b62065f5"
],
"x-ms-correlation-request-id": [
- "23dd7758-8d96-4735-888e-a2b1e4d7b8c7"
+ "c850ab09-fb10-4459-b9e6-c987b62065f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223144Z:23dd7758-8d96-4735-888e-a2b1e4d7b8c7"
+ "NORTHCENTRALUS:20200519T191232Z:c850ab09-fb10-4459-b9e6-c987b62065f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13362,7 +24450,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:44 GMT"
+ "Tue, 19 May 2020 19:12:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13374,17 +24462,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79bd7737-a9b6-455b-aaef-30b4892c4e29"
+ "6edb6358-2c5f-4f92-9450-1e81f089c410"
],
"Accept-Language": [
"en-US"
@@ -13407,16 +24495,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
+ "11742"
],
"x-ms-request-id": [
- "f352820e-fba7-4f10-a765-f39d3f1b5d2b"
+ "68082f0c-8a8c-4ce8-94bd-b7674a1732d4"
],
"x-ms-correlation-request-id": [
- "f352820e-fba7-4f10-a765-f39d3f1b5d2b"
+ "68082f0c-8a8c-4ce8-94bd-b7674a1732d4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223145Z:f352820e-fba7-4f10-a765-f39d3f1b5d2b"
+ "NORTHCENTRALUS:20200519T191233Z:68082f0c-8a8c-4ce8-94bd-b7674a1732d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13425,7 +24513,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:44 GMT"
+ "Tue, 19 May 2020 19:12:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13437,17 +24525,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a96cca9-aff0-400e-b41f-a5e625e939c6"
+ "826eb0db-009d-4b8b-bce3-065b48ba864a"
],
"Accept-Language": [
"en-US"
@@ -13470,16 +24558,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
+ "11740"
],
"x-ms-request-id": [
- "690f4ae2-b801-46b8-8215-c2041916959d"
+ "84e643af-cc4b-4c9f-a7bb-cb538567b18e"
],
"x-ms-correlation-request-id": [
- "690f4ae2-b801-46b8-8215-c2041916959d"
+ "84e643af-cc4b-4c9f-a7bb-cb538567b18e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223145Z:690f4ae2-b801-46b8-8215-c2041916959d"
+ "NORTHCENTRALUS:20200519T191233Z:84e643af-cc4b-4c9f-a7bb-cb538567b18e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13488,7 +24576,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:45 GMT"
+ "Tue, 19 May 2020 19:12:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13500,17 +24588,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0a277fd-0445-4076-ac25-a61622710214"
+ "b1a94e79-8676-40f7-a9d8-3ec3f18d039a"
],
"Accept-Language": [
"en-US"
@@ -13533,16 +24621,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
+ "11738"
],
"x-ms-request-id": [
- "d3d336fd-78b8-490b-8a47-a108047d2a27"
+ "b986dd4c-3000-49a0-9aff-0fb4a5b888a7"
],
"x-ms-correlation-request-id": [
- "d3d336fd-78b8-490b-8a47-a108047d2a27"
+ "b986dd4c-3000-49a0-9aff-0fb4a5b888a7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223145Z:d3d336fd-78b8-490b-8a47-a108047d2a27"
+ "NORTHCENTRALUS:20200519T191234Z:b986dd4c-3000-49a0-9aff-0fb4a5b888a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13551,7 +24639,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:45 GMT"
+ "Tue, 19 May 2020 19:12:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13563,17 +24651,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:40.5590043Z\",\r\n \"duration\": \"PT13.4818222S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ae7baa1-9236-418b-ab94-0495f29e7afc"
+ "ddd6dfaf-5fc2-4c20-a2bc-71c88d41c392"
],
"Accept-Language": [
"en-US"
@@ -13596,16 +24684,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
+ "11736"
],
"x-ms-request-id": [
- "c8853ad6-4cc6-4b20-8d3b-586b55c66f3a"
+ "7c50bebb-da50-4d1c-9543-280ae47e9a34"
],
"x-ms-correlation-request-id": [
- "c8853ad6-4cc6-4b20-8d3b-586b55c66f3a"
+ "7c50bebb-da50-4d1c-9543-280ae47e9a34"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223146Z:c8853ad6-4cc6-4b20-8d3b-586b55c66f3a"
+ "NORTHCENTRALUS:20200519T191234Z:7c50bebb-da50-4d1c-9543-280ae47e9a34"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13614,7 +24702,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:45 GMT"
+ "Tue, 19 May 2020 19:12:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13626,17 +24714,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:23.6252141Z\",\r\n \"duration\": \"PT42.0202131S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "545546bc-911f-446f-abfb-b025a5b46fa1"
+ "b6b7dd0d-1b4b-45d5-bd06-e72a7683d449"
],
"Accept-Language": [
"en-US"
@@ -13659,16 +24747,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
+ "11734"
],
"x-ms-request-id": [
- "1ce9ee72-f8fc-4cb4-a75c-9d585339a025"
+ "e3b9a2b9-83b9-4aa0-b004-842dce3c487b"
],
"x-ms-correlation-request-id": [
- "1ce9ee72-f8fc-4cb4-a75c-9d585339a025"
+ "e3b9a2b9-83b9-4aa0-b004-842dce3c487b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223146Z:1ce9ee72-f8fc-4cb4-a75c-9d585339a025"
+ "NORTHCENTRALUS:20200519T191235Z:e3b9a2b9-83b9-4aa0-b004-842dce3c487b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13677,7 +24765,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:46 GMT"
+ "Tue, 19 May 2020 19:12:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13689,17 +24777,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a49e3621-f588-476f-8f38-866b65e4ea78"
+ "e24aac27-2abc-4640-b0f6-23263447bd0b"
],
"Accept-Language": [
"en-US"
@@ -13722,16 +24810,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
+ "11732"
],
"x-ms-request-id": [
- "a777430a-4d0e-46b8-bfbe-03d9fb907481"
+ "d800b943-3cf5-43d6-afb1-ec9af0fcdf75"
],
"x-ms-correlation-request-id": [
- "a777430a-4d0e-46b8-bfbe-03d9fb907481"
+ "d800b943-3cf5-43d6-afb1-ec9af0fcdf75"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223147Z:a777430a-4d0e-46b8-bfbe-03d9fb907481"
+ "NORTHCENTRALUS:20200519T191235Z:d800b943-3cf5-43d6-afb1-ec9af0fcdf75"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13740,7 +24828,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:46 GMT"
+ "Tue, 19 May 2020 19:12:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13752,17 +24840,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35621e57-9a89-4004-a6ed-81c49c2b1493"
+ "7666800a-a714-49dd-bcf3-3090e522b778"
],
"Accept-Language": [
"en-US"
@@ -13785,16 +24873,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
+ "11730"
],
"x-ms-request-id": [
- "05160ea3-9272-4ec3-b651-a79c1743209c"
+ "78aeb937-5847-42bd-bca2-d4c2e5d6653d"
],
"x-ms-correlation-request-id": [
- "05160ea3-9272-4ec3-b651-a79c1743209c"
+ "78aeb937-5847-42bd-bca2-d4c2e5d6653d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223147Z:05160ea3-9272-4ec3-b651-a79c1743209c"
+ "NORTHCENTRALUS:20200519T191235Z:78aeb937-5847-42bd-bca2-d4c2e5d6653d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13803,7 +24891,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:47 GMT"
+ "Tue, 19 May 2020 19:12:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13815,17 +24903,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a4f355be-9ff6-4900-82af-e52277d744ea"
+ "f5e25716-2b08-4a0a-9fd1-ed53d6a10506"
],
"Accept-Language": [
"en-US"
@@ -13848,16 +24936,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
+ "11728"
],
"x-ms-request-id": [
- "248818c1-a9db-49b2-b677-45526d0a0578"
+ "86c1c957-fd4f-4b5c-abf9-b6e5d20ac8cb"
],
"x-ms-correlation-request-id": [
- "248818c1-a9db-49b2-b677-45526d0a0578"
+ "86c1c957-fd4f-4b5c-abf9-b6e5d20ac8cb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223148Z:248818c1-a9db-49b2-b677-45526d0a0578"
+ "NORTHCENTRALUS:20200519T191236Z:86c1c957-fd4f-4b5c-abf9-b6e5d20ac8cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13866,7 +24954,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:47 GMT"
+ "Tue, 19 May 2020 19:12:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13878,17 +24966,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8727ea6c-e981-4ade-964e-e398fbd816d8"
+ "b254a479-7f6b-4a86-9e75-7591d18ea975"
],
"Accept-Language": [
"en-US"
@@ -13911,16 +24999,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11902"
+ "11726"
],
"x-ms-request-id": [
- "fc79a40f-ee63-4166-b388-47441dff8219"
+ "dbd180aa-fa6b-4f6e-9b48-27806eb99c84"
],
"x-ms-correlation-request-id": [
- "fc79a40f-ee63-4166-b388-47441dff8219"
+ "dbd180aa-fa6b-4f6e-9b48-27806eb99c84"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223148Z:fc79a40f-ee63-4166-b388-47441dff8219"
+ "NORTHCENTRALUS:20200519T191236Z:dbd180aa-fa6b-4f6e-9b48-27806eb99c84"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13929,7 +25017,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:47 GMT"
+ "Tue, 19 May 2020 19:12:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13941,17 +25029,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4491e114-9d23-413b-87e2-ed8300c50bfd"
+ "02509def-45d9-40a7-8f8f-3e81b33ecf28"
],
"Accept-Language": [
"en-US"
@@ -13974,16 +25062,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11900"
+ "11724"
],
"x-ms-request-id": [
- "33a44ab7-69b5-4e5a-b9d2-14227f60c4bb"
+ "cedeb435-f5a6-4833-b6c6-8fcd03c16e5f"
],
"x-ms-correlation-request-id": [
- "33a44ab7-69b5-4e5a-b9d2-14227f60c4bb"
+ "cedeb435-f5a6-4833-b6c6-8fcd03c16e5f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223148Z:33a44ab7-69b5-4e5a-b9d2-14227f60c4bb"
+ "NORTHCENTRALUS:20200519T191237Z:cedeb435-f5a6-4833-b6c6-8fcd03c16e5f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13992,7 +25080,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:48 GMT"
+ "Tue, 19 May 2020 19:12:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14004,17 +25092,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df4c8666-f605-4670-88d8-24076602074a"
+ "0fd276ef-d0d3-4aba-8619-9ff5dd2de2a7"
],
"Accept-Language": [
"en-US"
@@ -14037,16 +25125,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11898"
+ "11722"
],
"x-ms-request-id": [
- "4f13ed7e-2c38-426a-8d21-527c8bbda696"
+ "8867e5c8-7b0d-4aeb-acad-0f9ed6f37e0c"
],
"x-ms-correlation-request-id": [
- "4f13ed7e-2c38-426a-8d21-527c8bbda696"
+ "8867e5c8-7b0d-4aeb-acad-0f9ed6f37e0c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223149Z:4f13ed7e-2c38-426a-8d21-527c8bbda696"
+ "NORTHCENTRALUS:20200519T191237Z:8867e5c8-7b0d-4aeb-acad-0f9ed6f37e0c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14055,7 +25143,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:48 GMT"
+ "Tue, 19 May 2020 19:12:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14067,17 +25155,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b878eed-e7f8-4eae-a2ae-fb5de05db431"
+ "646c6e27-e50c-4991-bf63-dbf186a5c48c"
],
"Accept-Language": [
"en-US"
@@ -14100,16 +25188,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11896"
+ "11720"
],
"x-ms-request-id": [
- "52ee9dcb-2ec4-47b7-accc-834369063c9a"
+ "f7ded51b-404a-412d-9c88-a7ff60656cb4"
],
"x-ms-correlation-request-id": [
- "52ee9dcb-2ec4-47b7-accc-834369063c9a"
+ "f7ded51b-404a-412d-9c88-a7ff60656cb4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223149Z:52ee9dcb-2ec4-47b7-accc-834369063c9a"
+ "NORTHCENTRALUS:20200519T191237Z:f7ded51b-404a-412d-9c88-a7ff60656cb4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14118,7 +25206,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:49 GMT"
+ "Tue, 19 May 2020 19:12:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14130,17 +25218,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d88229fc-fa0d-49ca-aa80-9ee8ea61f2ba"
+ "3d0de4f0-6f89-49bb-82ef-1ed50f535c67"
],
"Accept-Language": [
"en-US"
@@ -14163,16 +25251,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11894"
+ "11718"
],
"x-ms-request-id": [
- "85efc13d-a4b3-4452-ba71-aa56213e2d4e"
+ "acc90326-2e41-43e1-b8cb-ccecc6b9521b"
],
"x-ms-correlation-request-id": [
- "85efc13d-a4b3-4452-ba71-aa56213e2d4e"
+ "acc90326-2e41-43e1-b8cb-ccecc6b9521b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223150Z:85efc13d-a4b3-4452-ba71-aa56213e2d4e"
+ "NORTHCENTRALUS:20200519T191238Z:acc90326-2e41-43e1-b8cb-ccecc6b9521b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14181,7 +25269,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:49 GMT"
+ "Tue, 19 May 2020 19:12:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14193,17 +25281,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50f61b44-63e5-4f28-b767-f3a857b1a1fb"
+ "5e23e670-700f-4dbe-8d2d-f41113d80a71"
],
"Accept-Language": [
"en-US"
@@ -14226,16 +25314,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11892"
+ "11716"
],
"x-ms-request-id": [
- "48addf46-00a5-42cb-b5e9-6a1a20c4f6f5"
+ "e8081a56-775a-45a1-abb3-55fca2e4b683"
],
"x-ms-correlation-request-id": [
- "48addf46-00a5-42cb-b5e9-6a1a20c4f6f5"
+ "e8081a56-775a-45a1-abb3-55fca2e4b683"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223150Z:48addf46-00a5-42cb-b5e9-6a1a20c4f6f5"
+ "NORTHCENTRALUS:20200519T191238Z:e8081a56-775a-45a1-abb3-55fca2e4b683"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14244,7 +25332,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:50 GMT"
+ "Tue, 19 May 2020 19:12:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14256,17 +25344,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ed8b513-30e4-4fe8-a8fc-bd2e6fa8d041"
+ "2a8f2430-13f2-44c5-b0c0-82ba7541925a"
],
"Accept-Language": [
"en-US"
@@ -14289,16 +25377,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11890"
+ "11714"
],
"x-ms-request-id": [
- "cf2b259b-7985-416e-9cbb-9e1c97826bb2"
+ "c12ff330-34aa-444d-a52f-1b9d9cf8e86a"
],
"x-ms-correlation-request-id": [
- "cf2b259b-7985-416e-9cbb-9e1c97826bb2"
+ "c12ff330-34aa-444d-a52f-1b9d9cf8e86a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223150Z:cf2b259b-7985-416e-9cbb-9e1c97826bb2"
+ "NORTHCENTRALUS:20200519T191239Z:c12ff330-34aa-444d-a52f-1b9d9cf8e86a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14307,7 +25395,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:50 GMT"
+ "Tue, 19 May 2020 19:12:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14319,17 +25407,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9dde46c-5fab-49a1-93e2-b931b66d53c1"
+ "2c19e5f9-f484-48a8-a882-5cbcee7cc004"
],
"Accept-Language": [
"en-US"
@@ -14352,16 +25440,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11888"
+ "11712"
],
"x-ms-request-id": [
- "4ec7b9ae-77c3-4817-b47c-15579f4c721f"
+ "a98fd2ee-44e6-4f6a-83a1-05524c3bced8"
],
"x-ms-correlation-request-id": [
- "4ec7b9ae-77c3-4817-b47c-15579f4c721f"
+ "a98fd2ee-44e6-4f6a-83a1-05524c3bced8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223151Z:4ec7b9ae-77c3-4817-b47c-15579f4c721f"
+ "NORTHCENTRALUS:20200519T191239Z:a98fd2ee-44e6-4f6a-83a1-05524c3bced8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14370,7 +25458,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:50 GMT"
+ "Tue, 19 May 2020 19:12:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14382,17 +25470,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c808f55-4f23-4238-8e2a-16ddce0ba2c4"
+ "567d60ff-e40e-427d-bc01-24078eba7c37"
],
"Accept-Language": [
"en-US"
@@ -14415,16 +25503,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
+ "11710"
],
"x-ms-request-id": [
- "baf16455-84f1-429a-a40c-9083829d8f67"
+ "52377275-adb9-4a53-9285-85ba6443039b"
],
"x-ms-correlation-request-id": [
- "baf16455-84f1-429a-a40c-9083829d8f67"
+ "52377275-adb9-4a53-9285-85ba6443039b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223151Z:baf16455-84f1-429a-a40c-9083829d8f67"
+ "NORTHCENTRALUS:20200519T191240Z:52377275-adb9-4a53-9285-85ba6443039b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14433,7 +25521,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:51 GMT"
+ "Tue, 19 May 2020 19:12:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14445,17 +25533,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:46.0269947Z\",\r\n \"duration\": \"PT18.9498126S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7c354ba-d73a-47f3-af9f-90109197d5a5"
+ "de350217-f913-4926-881d-ad9b617e109f"
],
"Accept-Language": [
"en-US"
@@ -14478,16 +25566,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
+ "11708"
],
"x-ms-request-id": [
- "97116fcc-bffa-474e-acb5-f5d96d29e3bd"
+ "0a147585-b222-4330-ae09-4a930fa46121"
],
"x-ms-correlation-request-id": [
- "97116fcc-bffa-474e-acb5-f5d96d29e3bd"
+ "0a147585-b222-4330-ae09-4a930fa46121"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223152Z:97116fcc-bffa-474e-acb5-f5d96d29e3bd"
+ "NORTHCENTRALUS:20200519T191240Z:0a147585-b222-4330-ae09-4a930fa46121"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14496,7 +25584,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:51 GMT"
+ "Tue, 19 May 2020 19:12:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14508,17 +25596,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "056741c8-ad8e-4e22-8be1-31c540b8f8a1"
+ "718ad9b9-635f-4db7-b979-f148210e1cae"
],
"Accept-Language": [
"en-US"
@@ -14541,16 +25629,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
+ "11706"
],
"x-ms-request-id": [
- "26037516-8261-4a9a-abef-1ffc1796a97f"
+ "d58734cf-0856-4e45-8dec-cab00cf5867d"
],
"x-ms-correlation-request-id": [
- "26037516-8261-4a9a-abef-1ffc1796a97f"
+ "d58734cf-0856-4e45-8dec-cab00cf5867d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223152Z:26037516-8261-4a9a-abef-1ffc1796a97f"
+ "NORTHCENTRALUS:20200519T191240Z:d58734cf-0856-4e45-8dec-cab00cf5867d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14559,7 +25647,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:52 GMT"
+ "Tue, 19 May 2020 19:12:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14571,17 +25659,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:34.6401968Z\",\r\n \"duration\": \"PT53.0351958S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e3538e2-eafd-4b44-9d35-aa051e29c29f"
+ "11b752ca-e3b1-4656-8a18-aa63d1ab7abf"
],
"Accept-Language": [
"en-US"
@@ -14604,16 +25692,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
+ "11704"
],
"x-ms-request-id": [
- "a9e69477-b1ce-4db2-bc53-befaa4fe807a"
+ "cdc72851-b158-43be-ac49-e4f9ee42ec8b"
],
"x-ms-correlation-request-id": [
- "a9e69477-b1ce-4db2-bc53-befaa4fe807a"
+ "cdc72851-b158-43be-ac49-e4f9ee42ec8b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223153Z:a9e69477-b1ce-4db2-bc53-befaa4fe807a"
+ "NORTHCENTRALUS:20200519T191241Z:cdc72851-b158-43be-ac49-e4f9ee42ec8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14622,7 +25710,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:52 GMT"
+ "Tue, 19 May 2020 19:12:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14634,17 +25722,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2246e3c9-7aaf-4fda-a487-399e68795744"
+ "6d675023-6b9e-4c98-8912-de563d84d2ca"
],
"Accept-Language": [
"en-US"
@@ -14667,16 +25755,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
+ "11702"
],
"x-ms-request-id": [
- "40bb2f2b-1dee-4763-a2e9-9973072bf5dd"
+ "860afe28-307b-41bb-9c87-7fce16ab3e49"
],
"x-ms-correlation-request-id": [
- "40bb2f2b-1dee-4763-a2e9-9973072bf5dd"
+ "860afe28-307b-41bb-9c87-7fce16ab3e49"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223153Z:40bb2f2b-1dee-4763-a2e9-9973072bf5dd"
+ "NORTHCENTRALUS:20200519T191241Z:860afe28-307b-41bb-9c87-7fce16ab3e49"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14685,7 +25773,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:52 GMT"
+ "Tue, 19 May 2020 19:12:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14697,17 +25785,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "002ed312-34ed-4f11-b5f1-8fda9acff892"
+ "29a1a15b-c8b4-491a-8c35-996b7d67054e"
],
"Accept-Language": [
"en-US"
@@ -14730,16 +25818,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11876"
+ "11700"
],
"x-ms-request-id": [
- "06cbf5a4-1a5d-4a08-9bd3-b24d3e1d8aad"
+ "43cd7353-e259-4560-bd35-ab301716dada"
],
"x-ms-correlation-request-id": [
- "06cbf5a4-1a5d-4a08-9bd3-b24d3e1d8aad"
+ "43cd7353-e259-4560-bd35-ab301716dada"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223153Z:06cbf5a4-1a5d-4a08-9bd3-b24d3e1d8aad"
+ "NORTHCENTRALUS:20200519T191242Z:43cd7353-e259-4560-bd35-ab301716dada"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14748,7 +25836,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:53 GMT"
+ "Tue, 19 May 2020 19:12:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14760,17 +25848,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0622458c-e1de-4a1d-87f6-cbf3c230d1b2"
+ "d47453c7-dd62-4bc3-bf61-e1fee515d982"
],
"Accept-Language": [
"en-US"
@@ -14793,16 +25881,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11874"
+ "11698"
],
"x-ms-request-id": [
- "7c59a162-af66-45a6-8638-164fea9f9ca7"
+ "b813fafa-6f9f-4df7-a499-3da5f96e04eb"
],
"x-ms-correlation-request-id": [
- "7c59a162-af66-45a6-8638-164fea9f9ca7"
+ "b813fafa-6f9f-4df7-a499-3da5f96e04eb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223154Z:7c59a162-af66-45a6-8638-164fea9f9ca7"
+ "NORTHCENTRALUS:20200519T191242Z:b813fafa-6f9f-4df7-a499-3da5f96e04eb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14811,7 +25899,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:53 GMT"
+ "Tue, 19 May 2020 19:12:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14823,17 +25911,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad8865ec-8a5b-4f09-a456-6c06771b8e28"
+ "7f5b653b-eb0c-4d61-a7a9-4e71d2139203"
],
"Accept-Language": [
"en-US"
@@ -14856,16 +25944,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11872"
+ "11696"
],
"x-ms-request-id": [
- "c8bd3af7-eafa-42e2-8ae1-2d5a1e86b6fd"
+ "da7e6edb-aa67-44e1-9405-7633e4a38b73"
],
"x-ms-correlation-request-id": [
- "c8bd3af7-eafa-42e2-8ae1-2d5a1e86b6fd"
+ "da7e6edb-aa67-44e1-9405-7633e4a38b73"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223154Z:c8bd3af7-eafa-42e2-8ae1-2d5a1e86b6fd"
+ "NORTHCENTRALUS:20200519T191242Z:da7e6edb-aa67-44e1-9405-7633e4a38b73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14874,7 +25962,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:54 GMT"
+ "Tue, 19 May 2020 19:12:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14886,17 +25974,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26953020-4030-4ba0-b3ff-482d5028868d"
+ "cf20ce63-630e-4db2-83c7-81045f58d8e0"
],
"Accept-Language": [
"en-US"
@@ -14919,16 +26007,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11870"
+ "11694"
],
"x-ms-request-id": [
- "aedf14a3-47f2-4311-9f41-d1ea99997663"
+ "7d3edd76-7285-4d05-8505-c395cc255cd8"
],
"x-ms-correlation-request-id": [
- "aedf14a3-47f2-4311-9f41-d1ea99997663"
+ "7d3edd76-7285-4d05-8505-c395cc255cd8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223155Z:aedf14a3-47f2-4311-9f41-d1ea99997663"
+ "NORTHCENTRALUS:20200519T191243Z:7d3edd76-7285-4d05-8505-c395cc255cd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14937,7 +26025,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:54 GMT"
+ "Tue, 19 May 2020 19:12:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14949,17 +26037,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "435795ba-f9c4-4257-bad9-9f3049691b0f"
+ "d6f5dd91-c8e7-45f0-87ef-9bdebcc54d2e"
],
"Accept-Language": [
"en-US"
@@ -14982,16 +26070,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11868"
+ "11692"
],
"x-ms-request-id": [
- "68736e22-3b68-4aa0-9de1-994b2766f0ad"
+ "56190d95-e8bb-4148-9df1-b3d147d8f09e"
],
"x-ms-correlation-request-id": [
- "68736e22-3b68-4aa0-9de1-994b2766f0ad"
+ "56190d95-e8bb-4148-9df1-b3d147d8f09e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223155Z:68736e22-3b68-4aa0-9de1-994b2766f0ad"
+ "NORTHCENTRALUS:20200519T191243Z:56190d95-e8bb-4148-9df1-b3d147d8f09e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15000,7 +26088,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:54 GMT"
+ "Tue, 19 May 2020 19:12:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15012,17 +26100,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20949211-7175-4c29-a070-e2890a87aca7"
+ "a289571f-9ca4-44e6-ad52-5337746b687f"
],
"Accept-Language": [
"en-US"
@@ -15045,16 +26133,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11866"
+ "11690"
],
"x-ms-request-id": [
- "3c1fc675-620b-4f48-a624-42df9ebb3808"
+ "ad7465da-278e-4c8b-93c6-40f70b08c1ae"
],
"x-ms-correlation-request-id": [
- "3c1fc675-620b-4f48-a624-42df9ebb3808"
+ "ad7465da-278e-4c8b-93c6-40f70b08c1ae"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223156Z:3c1fc675-620b-4f48-a624-42df9ebb3808"
+ "NORTHCENTRALUS:20200519T191244Z:ad7465da-278e-4c8b-93c6-40f70b08c1ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15063,7 +26151,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:55 GMT"
+ "Tue, 19 May 2020 19:12:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15075,17 +26163,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9817b5a7-c3c2-4639-bf0c-e7a2db95dc23"
+ "4b4c66b8-832f-43c8-8c53-0f2adbadc926"
],
"Accept-Language": [
"en-US"
@@ -15108,16 +26196,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11864"
+ "11688"
],
"x-ms-request-id": [
- "47ad38e4-e2eb-450c-a8e5-8e38ec752d10"
+ "1a5333e4-eec4-4738-866b-9757e9dc881e"
],
"x-ms-correlation-request-id": [
- "47ad38e4-e2eb-450c-a8e5-8e38ec752d10"
+ "1a5333e4-eec4-4738-866b-9757e9dc881e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223156Z:47ad38e4-e2eb-450c-a8e5-8e38ec752d10"
+ "NORTHCENTRALUS:20200519T191244Z:1a5333e4-eec4-4738-866b-9757e9dc881e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15126,7 +26214,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:55 GMT"
+ "Tue, 19 May 2020 19:12:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15138,17 +26226,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02f4fefa-22a8-4168-93e9-c4b3c271049d"
+ "2b6fcc7a-5bc8-45c5-acd7-3cba9a26dc4b"
],
"Accept-Language": [
"en-US"
@@ -15171,16 +26259,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11862"
+ "11686"
],
"x-ms-request-id": [
- "d0620b49-fba0-4b85-a8cc-261fa616ae35"
+ "6effff2f-5c18-4bd1-bec6-e26797230736"
],
"x-ms-correlation-request-id": [
- "d0620b49-fba0-4b85-a8cc-261fa616ae35"
+ "6effff2f-5c18-4bd1-bec6-e26797230736"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223156Z:d0620b49-fba0-4b85-a8cc-261fa616ae35"
+ "NORTHCENTRALUS:20200519T191245Z:6effff2f-5c18-4bd1-bec6-e26797230736"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15189,7 +26277,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:56 GMT"
+ "Tue, 19 May 2020 19:12:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15201,17 +26289,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a07d1fe3-05a2-4a5f-b877-675c25d953a0"
+ "d675b49c-5866-4cba-85f8-c5d14375e49a"
],
"Accept-Language": [
"en-US"
@@ -15234,16 +26322,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11860"
+ "11684"
],
"x-ms-request-id": [
- "609bbac5-e891-46de-b06e-707d96efb929"
+ "94c3216f-d50a-4b4c-a61c-820c0a6cdf13"
],
"x-ms-correlation-request-id": [
- "609bbac5-e891-46de-b06e-707d96efb929"
+ "94c3216f-d50a-4b4c-a61c-820c0a6cdf13"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223157Z:609bbac5-e891-46de-b06e-707d96efb929"
+ "NORTHCENTRALUS:20200519T191245Z:94c3216f-d50a-4b4c-a61c-820c0a6cdf13"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15252,7 +26340,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:56 GMT"
+ "Tue, 19 May 2020 19:12:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15264,17 +26352,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a32f6e05-cadc-4bfa-beed-bdcfda0806b4"
+ "b9f1abe8-4e8c-4f7d-94b1-2eebd3b84dc8"
],
"Accept-Language": [
"en-US"
@@ -15297,16 +26385,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11858"
+ "11682"
],
"x-ms-request-id": [
- "a000c288-4c70-449e-ab33-871b94870f4e"
+ "c79fec82-cf51-42ac-8bf6-f5a89f04caab"
],
"x-ms-correlation-request-id": [
- "a000c288-4c70-449e-ab33-871b94870f4e"
+ "c79fec82-cf51-42ac-8bf6-f5a89f04caab"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223157Z:a000c288-4c70-449e-ab33-871b94870f4e"
+ "NORTHCENTRALUS:20200519T191245Z:c79fec82-cf51-42ac-8bf6-f5a89f04caab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15315,7 +26403,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:57 GMT"
+ "Tue, 19 May 2020 19:12:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15327,17 +26415,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2e6711c-1c77-4dce-97fa-0edc202ea2a7"
+ "d4c1e038-121d-4435-bcad-36eae1b42875"
],
"Accept-Language": [
"en-US"
@@ -15360,16 +26448,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11856"
+ "11680"
],
"x-ms-request-id": [
- "9e5eb1a4-a4ba-4ff4-a9b1-846b66a7eb74"
+ "e74a2a78-810b-4a59-b0db-385f3aa25979"
],
"x-ms-correlation-request-id": [
- "9e5eb1a4-a4ba-4ff4-a9b1-846b66a7eb74"
+ "e74a2a78-810b-4a59-b0db-385f3aa25979"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223158Z:9e5eb1a4-a4ba-4ff4-a9b1-846b66a7eb74"
+ "NORTHCENTRALUS:20200519T191246Z:e74a2a78-810b-4a59-b0db-385f3aa25979"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15378,7 +26466,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:57 GMT"
+ "Tue, 19 May 2020 19:12:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15390,17 +26478,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b38ccfd-3548-4082-9052-5eaae49d9f2b"
+ "43b20f70-7ffa-4cd3-b821-7887ac14ba40"
],
"Accept-Language": [
"en-US"
@@ -15423,16 +26511,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11854"
+ "11678"
],
"x-ms-request-id": [
- "27f8a548-b429-48bb-bd4d-bbdfef130e74"
+ "b5d36dce-f1fa-4b7b-93d8-3e206fcd630f"
],
"x-ms-correlation-request-id": [
- "27f8a548-b429-48bb-bd4d-bbdfef130e74"
+ "b5d36dce-f1fa-4b7b-93d8-3e206fcd630f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223158Z:27f8a548-b429-48bb-bd4d-bbdfef130e74"
+ "NORTHCENTRALUS:20200519T191246Z:b5d36dce-f1fa-4b7b-93d8-3e206fcd630f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15441,7 +26529,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:57 GMT"
+ "Tue, 19 May 2020 19:12:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15453,17 +26541,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:51.7287438Z\",\r\n \"duration\": \"PT24.6515617S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72cb70dd-a0b8-4abc-9567-1045d989836e"
+ "b8e41f93-274f-4ded-ab71-c71b2fba69d3"
],
"Accept-Language": [
"en-US"
@@ -15486,16 +26574,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11852"
+ "11676"
],
"x-ms-request-id": [
- "66c75e11-53fc-4667-898d-02ea7e7b913f"
+ "3ebc5537-aa16-4bee-bfa8-07eac4bccc00"
],
"x-ms-correlation-request-id": [
- "66c75e11-53fc-4667-898d-02ea7e7b913f"
+ "3ebc5537-aa16-4bee-bfa8-07eac4bccc00"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223158Z:66c75e11-53fc-4667-898d-02ea7e7b913f"
+ "NORTHCENTRALUS:20200519T191247Z:3ebc5537-aa16-4bee-bfa8-07eac4bccc00"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15504,7 +26592,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:58 GMT"
+ "Tue, 19 May 2020 19:12:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15516,17 +26604,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c086ac70-8e6a-4868-a29c-a1ce96153359"
+ "e4c8f4a6-3ce1-4cfd-acb7-1a320da95ace"
],
"Accept-Language": [
"en-US"
@@ -15549,16 +26637,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11850"
+ "11674"
],
"x-ms-request-id": [
- "24e69afd-c54b-49e3-85f9-41798b21f51b"
+ "9cec8a24-e4a1-4a29-94cd-98409f5e8eb4"
],
"x-ms-correlation-request-id": [
- "24e69afd-c54b-49e3-85f9-41798b21f51b"
+ "9cec8a24-e4a1-4a29-94cd-98409f5e8eb4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223159Z:24e69afd-c54b-49e3-85f9-41798b21f51b"
+ "NORTHCENTRALUS:20200519T191247Z:9cec8a24-e4a1-4a29-94cd-98409f5e8eb4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15567,7 +26655,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:58 GMT"
+ "Tue, 19 May 2020 19:12:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15579,17 +26667,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b9f6998-f798-4b17-aee5-6d7a1fe4cad4"
+ "604cf24b-bfd7-42b5-9a5f-4acc72de8a30"
],
"Accept-Language": [
"en-US"
@@ -15612,16 +26700,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11848"
+ "11672"
],
"x-ms-request-id": [
- "ae5d42e7-580f-4008-a7b3-3dd938ff5624"
+ "6ea36010-9bc1-4560-b6ce-0c3f44989198"
],
"x-ms-correlation-request-id": [
- "ae5d42e7-580f-4008-a7b3-3dd938ff5624"
+ "6ea36010-9bc1-4560-b6ce-0c3f44989198"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223159Z:ae5d42e7-580f-4008-a7b3-3dd938ff5624"
+ "NORTHCENTRALUS:20200519T191247Z:6ea36010-9bc1-4560-b6ce-0c3f44989198"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15630,7 +26718,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:59 GMT"
+ "Tue, 19 May 2020 19:12:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15642,17 +26730,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3439df04-0782-45af-b5c0-6501537a0543"
+ "d18f0588-d1b4-4c41-94fb-ccd3a0870943"
],
"Accept-Language": [
"en-US"
@@ -15675,16 +26763,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11846"
+ "11670"
],
"x-ms-request-id": [
- "aa1bd232-b657-40bf-bd70-ff45f1d5ccd4"
+ "934d3a89-061b-4f9b-b568-e77c57df99c7"
],
"x-ms-correlation-request-id": [
- "aa1bd232-b657-40bf-bd70-ff45f1d5ccd4"
+ "934d3a89-061b-4f9b-b568-e77c57df99c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223200Z:aa1bd232-b657-40bf-bd70-ff45f1d5ccd4"
+ "NORTHCENTRALUS:20200519T191248Z:934d3a89-061b-4f9b-b568-e77c57df99c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15693,7 +26781,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:59 GMT"
+ "Tue, 19 May 2020 19:12:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15705,17 +26793,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2dbbd8f1-d980-4c1a-b1a7-5ea5fb4f6923"
+ "e71bc86b-57ad-4c64-9385-43dbf67c8adb"
],
"Accept-Language": [
"en-US"
@@ -15738,16 +26826,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11844"
+ "11668"
],
"x-ms-request-id": [
- "b9a49080-c38d-4706-8b0d-feebc8468948"
+ "c88626ef-f732-42ea-98e4-fdd073d55bba"
],
"x-ms-correlation-request-id": [
- "b9a49080-c38d-4706-8b0d-feebc8468948"
+ "c88626ef-f732-42ea-98e4-fdd073d55bba"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223200Z:b9a49080-c38d-4706-8b0d-feebc8468948"
+ "NORTHCENTRALUS:20200519T191248Z:c88626ef-f732-42ea-98e4-fdd073d55bba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15756,7 +26844,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:31:59 GMT"
+ "Tue, 19 May 2020 19:12:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15768,17 +26856,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12f59944-ed42-4241-a513-031d8e5b767b"
+ "d842ffd4-aef7-4b73-aeea-155f4329b0ca"
],
"Accept-Language": [
"en-US"
@@ -15801,16 +26889,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11842"
+ "11666"
],
"x-ms-request-id": [
- "f009588f-c5cd-4f5d-bb5b-a7116a317600"
+ "46fa419c-ed5b-4630-bbcf-af44a59eb159"
],
"x-ms-correlation-request-id": [
- "f009588f-c5cd-4f5d-bb5b-a7116a317600"
+ "46fa419c-ed5b-4630-bbcf-af44a59eb159"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223201Z:f009588f-c5cd-4f5d-bb5b-a7116a317600"
+ "NORTHCENTRALUS:20200519T191249Z:46fa419c-ed5b-4630-bbcf-af44a59eb159"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15819,7 +26907,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:00 GMT"
+ "Tue, 19 May 2020 19:12:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15831,17 +26919,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30438bed-7be2-49a3-bb25-5096c84e2771"
+ "6dde7771-cb49-4ff1-9ac9-8aaad501c6dc"
],
"Accept-Language": [
"en-US"
@@ -15864,16 +26952,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11840"
+ "11664"
],
"x-ms-request-id": [
- "64dc0c99-d484-4896-bc56-d5d0b7e3bdc2"
+ "e3bc839a-2903-41a0-b64b-75f32e964972"
],
"x-ms-correlation-request-id": [
- "64dc0c99-d484-4896-bc56-d5d0b7e3bdc2"
+ "e3bc839a-2903-41a0-b64b-75f32e964972"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223201Z:64dc0c99-d484-4896-bc56-d5d0b7e3bdc2"
+ "NORTHCENTRALUS:20200519T191249Z:e3bc839a-2903-41a0-b64b-75f32e964972"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15882,7 +26970,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:00 GMT"
+ "Tue, 19 May 2020 19:12:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15894,17 +26982,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67311c4e-d37a-480c-9fc1-87a5c8f5082a"
+ "a4737c6d-a51b-47f7-ae97-ba75e9e3eaad"
],
"Accept-Language": [
"en-US"
@@ -15927,16 +27015,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11838"
+ "11662"
],
"x-ms-request-id": [
- "38b03e75-1567-404c-a185-e88ebd2b1c33"
+ "960121a7-041f-4577-937c-f34e6663b55a"
],
"x-ms-correlation-request-id": [
- "38b03e75-1567-404c-a185-e88ebd2b1c33"
+ "960121a7-041f-4577-937c-f34e6663b55a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223201Z:38b03e75-1567-404c-a185-e88ebd2b1c33"
+ "NORTHCENTRALUS:20200519T191250Z:960121a7-041f-4577-937c-f34e6663b55a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15945,7 +27033,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:01 GMT"
+ "Tue, 19 May 2020 19:12:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15957,17 +27045,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "28d859fb-1de4-4024-8f7d-e292fa02def2"
+ "4c362797-552d-4097-8aad-3737ffa9902b"
],
"Accept-Language": [
"en-US"
@@ -15990,16 +27078,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11836"
+ "11660"
],
"x-ms-request-id": [
- "2c0d6bb1-9034-41b4-b9f8-cd4c9632a8f9"
+ "4d21e972-f840-49f4-8f61-8a34e31589c3"
],
"x-ms-correlation-request-id": [
- "2c0d6bb1-9034-41b4-b9f8-cd4c9632a8f9"
+ "4d21e972-f840-49f4-8f61-8a34e31589c3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223202Z:2c0d6bb1-9034-41b4-b9f8-cd4c9632a8f9"
+ "NORTHCENTRALUS:20200519T191250Z:4d21e972-f840-49f4-8f61-8a34e31589c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16008,7 +27096,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:01 GMT"
+ "Tue, 19 May 2020 19:12:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16020,17 +27108,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f03d666-8ef5-4df1-a693-b18ab202b649"
+ "e56ad508-5c4d-4e91-b69e-57a09e18a897"
],
"Accept-Language": [
"en-US"
@@ -16053,16 +27141,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11834"
+ "11658"
],
"x-ms-request-id": [
- "1c1635b8-cd9a-4886-b0d3-3f6b17af9cbf"
+ "0d21be1d-6ee0-4294-a7df-7a47ac393282"
],
"x-ms-correlation-request-id": [
- "1c1635b8-cd9a-4886-b0d3-3f6b17af9cbf"
+ "0d21be1d-6ee0-4294-a7df-7a47ac393282"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223202Z:1c1635b8-cd9a-4886-b0d3-3f6b17af9cbf"
+ "NORTHCENTRALUS:20200519T191250Z:0d21be1d-6ee0-4294-a7df-7a47ac393282"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16071,7 +27159,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:02 GMT"
+ "Tue, 19 May 2020 19:12:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16083,17 +27171,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ab9a0ac-39e0-4447-811c-5811eec624bd"
+ "381034d6-bd0a-4800-9acf-1f64fd5c84dc"
],
"Accept-Language": [
"en-US"
@@ -16116,16 +27204,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11832"
+ "11656"
],
"x-ms-request-id": [
- "c286bcd9-af47-47e6-b055-f8cd5b9bf082"
+ "cb3f80c5-618b-4787-ba20-430c52e1ffaf"
],
"x-ms-correlation-request-id": [
- "c286bcd9-af47-47e6-b055-f8cd5b9bf082"
+ "cb3f80c5-618b-4787-ba20-430c52e1ffaf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223203Z:c286bcd9-af47-47e6-b055-f8cd5b9bf082"
+ "NORTHCENTRALUS:20200519T191251Z:cb3f80c5-618b-4787-ba20-430c52e1ffaf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16134,7 +27222,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:02 GMT"
+ "Tue, 19 May 2020 19:12:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16146,17 +27234,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d6b4a22-1b16-4b72-a8fa-87140dc384cd"
+ "7c40e549-df15-498d-8125-bd82cbbe0143"
],
"Accept-Language": [
"en-US"
@@ -16179,16 +27267,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11830"
+ "11654"
],
"x-ms-request-id": [
- "70eb5b1a-a803-4f69-a5a0-983685ffd122"
+ "ee006cd2-518c-4483-a77f-44fbcbb7fbd2"
],
"x-ms-correlation-request-id": [
- "70eb5b1a-a803-4f69-a5a0-983685ffd122"
+ "ee006cd2-518c-4483-a77f-44fbcbb7fbd2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223203Z:70eb5b1a-a803-4f69-a5a0-983685ffd122"
+ "NORTHCENTRALUS:20200519T191251Z:ee006cd2-518c-4483-a77f-44fbcbb7fbd2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16197,7 +27285,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:02 GMT"
+ "Tue, 19 May 2020 19:12:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16209,17 +27297,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2346f4bd-a09b-4a20-9d12-50726c964bd8"
+ "8d2605e3-6e92-4a2a-83e9-5d696eca8ded"
],
"Accept-Language": [
"en-US"
@@ -16242,16 +27330,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11828"
+ "11652"
],
"x-ms-request-id": [
- "955f7639-9a64-4289-9456-93257588f3d8"
+ "f4340016-048b-4019-926b-daeeecc576f5"
],
"x-ms-correlation-request-id": [
- "955f7639-9a64-4289-9456-93257588f3d8"
+ "f4340016-048b-4019-926b-daeeecc576f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223204Z:955f7639-9a64-4289-9456-93257588f3d8"
+ "NORTHCENTRALUS:20200519T191252Z:f4340016-048b-4019-926b-daeeecc576f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16260,7 +27348,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:03 GMT"
+ "Tue, 19 May 2020 19:12:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16272,17 +27360,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5924e301-7022-4ae6-9fe5-f034bea6d87d"
+ "45cb5988-5766-4b69-af06-cfd089c84582"
],
"Accept-Language": [
"en-US"
@@ -16305,16 +27393,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11826"
+ "11650"
],
"x-ms-request-id": [
- "5d6d6485-8880-4091-b2a4-0aeb4a863151"
+ "a6d241db-1228-4bca-84fa-e6ceacf7028a"
],
"x-ms-correlation-request-id": [
- "5d6d6485-8880-4091-b2a4-0aeb4a863151"
+ "a6d241db-1228-4bca-84fa-e6ceacf7028a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223204Z:5d6d6485-8880-4091-b2a4-0aeb4a863151"
+ "NORTHCENTRALUS:20200519T191252Z:a6d241db-1228-4bca-84fa-e6ceacf7028a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16323,7 +27411,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:03 GMT"
+ "Tue, 19 May 2020 19:12:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16335,17 +27423,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f541bc74-f174-466b-8078-ce438e19963d"
+ "95e061b5-d104-4b84-9543-39f6ce0760b1"
],
"Accept-Language": [
"en-US"
@@ -16368,16 +27456,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11824"
+ "11648"
],
"x-ms-request-id": [
- "26308128-fc30-4ab7-b9d6-4c6f2cea7d45"
+ "61591bd4-342d-453a-a77a-343bb0436d14"
],
"x-ms-correlation-request-id": [
- "26308128-fc30-4ab7-b9d6-4c6f2cea7d45"
+ "61591bd4-342d-453a-a77a-343bb0436d14"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223204Z:26308128-fc30-4ab7-b9d6-4c6f2cea7d45"
+ "NORTHCENTRALUS:20200519T191252Z:61591bd4-342d-453a-a77a-343bb0436d14"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16386,7 +27474,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:04 GMT"
+ "Tue, 19 May 2020 19:12:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16398,17 +27486,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4407328-66a1-4737-89a4-024b84e41c02"
+ "5dc5fa10-b3e4-41b4-a8da-4639ad1a5766"
],
"Accept-Language": [
"en-US"
@@ -16431,16 +27519,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11822"
+ "11646"
],
"x-ms-request-id": [
- "72c8890e-6e90-4f6c-a6c7-b532ccc46941"
+ "a8cd59d5-a15b-451d-af29-a922ec0c874c"
],
"x-ms-correlation-request-id": [
- "72c8890e-6e90-4f6c-a6c7-b532ccc46941"
+ "a8cd59d5-a15b-451d-af29-a922ec0c874c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223205Z:72c8890e-6e90-4f6c-a6c7-b532ccc46941"
+ "NORTHCENTRALUS:20200519T191253Z:a8cd59d5-a15b-451d-af29-a922ec0c874c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16449,7 +27537,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:04 GMT"
+ "Tue, 19 May 2020 19:12:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16461,17 +27549,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "246c24b3-22cd-4a0e-bb8b-7ff6c07c9ace"
+ "e697d393-fdad-4329-ad6b-25be50ac5fc1"
],
"Accept-Language": [
"en-US"
@@ -16494,16 +27582,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11820"
+ "11644"
],
"x-ms-request-id": [
- "abbcc768-56f7-45ba-97ef-c429bd236f54"
+ "b4b59235-e11a-4087-b7cb-3d99e12eeedc"
],
"x-ms-correlation-request-id": [
- "abbcc768-56f7-45ba-97ef-c429bd236f54"
+ "b4b59235-e11a-4087-b7cb-3d99e12eeedc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223205Z:abbcc768-56f7-45ba-97ef-c429bd236f54"
+ "NORTHCENTRALUS:20200519T191253Z:b4b59235-e11a-4087-b7cb-3d99e12eeedc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16512,7 +27600,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:05 GMT"
+ "Tue, 19 May 2020 19:12:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16524,17 +27612,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ec84db8-9524-4beb-b1bd-34cbc2f22c63"
+ "1806f3e2-ba55-485d-8641-2f58d4a55647"
],
"Accept-Language": [
"en-US"
@@ -16557,16 +27645,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11818"
+ "11642"
],
"x-ms-request-id": [
- "27befe1b-345a-4b2c-91d2-f04c6336c1b0"
+ "498b0e52-ab80-4a39-a7dd-edcb3c0b54da"
],
"x-ms-correlation-request-id": [
- "27befe1b-345a-4b2c-91d2-f04c6336c1b0"
+ "498b0e52-ab80-4a39-a7dd-edcb3c0b54da"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223206Z:27befe1b-345a-4b2c-91d2-f04c6336c1b0"
+ "NORTHCENTRALUS:20200519T191254Z:498b0e52-ab80-4a39-a7dd-edcb3c0b54da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16575,7 +27663,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:05 GMT"
+ "Tue, 19 May 2020 19:12:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16587,17 +27675,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfaccd60-f121-420e-81e8-87252c9e22a8"
+ "b9f6544f-e6d0-4df6-82d1-866d68187e5c"
],
"Accept-Language": [
"en-US"
@@ -16620,16 +27708,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11816"
+ "11640"
],
"x-ms-request-id": [
- "fb8cbaff-19e9-445c-82e8-07a31288ec17"
+ "a686c974-d298-4830-a628-f5641acb5447"
],
"x-ms-correlation-request-id": [
- "fb8cbaff-19e9-445c-82e8-07a31288ec17"
+ "a686c974-d298-4830-a628-f5641acb5447"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223206Z:fb8cbaff-19e9-445c-82e8-07a31288ec17"
+ "NORTHCENTRALUS:20200519T191254Z:a686c974-d298-4830-a628-f5641acb5447"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16638,7 +27726,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:05 GMT"
+ "Tue, 19 May 2020 19:12:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16650,17 +27738,17 @@
"1425"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:41.0885995Z\",\r\n \"duration\": \"PT59.4835985S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a8804aaa-59e3-45a1-868c-35ea402f09a1"
+ "fc1fb062-0555-4df8-95a2-fc30fd41f006"
],
"Accept-Language": [
"en-US"
@@ -16683,16 +27771,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11814"
+ "11638"
],
"x-ms-request-id": [
- "b7965cf0-f5ca-402f-9b01-f0258d8f6e3c"
+ "4c440750-4ba6-43f2-bd1d-43087ed3ccba"
],
"x-ms-correlation-request-id": [
- "b7965cf0-f5ca-402f-9b01-f0258d8f6e3c"
+ "4c440750-4ba6-43f2-bd1d-43087ed3ccba"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223207Z:b7965cf0-f5ca-402f-9b01-f0258d8f6e3c"
+ "NORTHCENTRALUS:20200519T191255Z:4c440750-4ba6-43f2-bd1d-43087ed3ccba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16701,7 +27789,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:06 GMT"
+ "Tue, 19 May 2020 19:12:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16710,20 +27798,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fccc0d36-b1cd-438e-901f-31efba65cb32"
+ "949ae0c4-81f7-46fb-a403-18c5aafa7aea"
],
"Accept-Language": [
"en-US"
@@ -16746,16 +27834,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11812"
+ "11636"
],
"x-ms-request-id": [
- "232d778d-af83-4a55-bb23-75c870bc278b"
+ "fb22f461-a112-404c-9d4e-6ef489eab8ac"
],
"x-ms-correlation-request-id": [
- "232d778d-af83-4a55-bb23-75c870bc278b"
+ "fb22f461-a112-404c-9d4e-6ef489eab8ac"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223207Z:232d778d-af83-4a55-bb23-75c870bc278b"
+ "NORTHCENTRALUS:20200519T191255Z:fb22f461-a112-404c-9d4e-6ef489eab8ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16764,7 +27852,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:06 GMT"
+ "Tue, 19 May 2020 19:12:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16773,20 +27861,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:31:58.7359249Z\",\r\n \"duration\": \"PT31.6587428S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f543b6cf-8526-4781-99b0-55302d5d99c2"
+ "ffdfd64b-9248-444b-9fdd-62dbf60c5403"
],
"Accept-Language": [
"en-US"
@@ -16809,16 +27897,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11810"
+ "11634"
],
"x-ms-request-id": [
- "21c4e673-7751-4a79-8f3a-370a1d1694b2"
+ "c36a9911-39eb-4179-8bf4-05b283673085"
],
"x-ms-correlation-request-id": [
- "21c4e673-7751-4a79-8f3a-370a1d1694b2"
+ "c36a9911-39eb-4179-8bf4-05b283673085"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223207Z:21c4e673-7751-4a79-8f3a-370a1d1694b2"
+ "NORTHCENTRALUS:20200519T191255Z:c36a9911-39eb-4179-8bf4-05b283673085"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16827,7 +27915,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:07 GMT"
+ "Tue, 19 May 2020 19:12:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16836,20 +27924,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2ce6767-5835-4b7b-a4f4-56756bf2d666"
+ "8d581a05-fc4f-4961-b044-59beda424760"
],
"Accept-Language": [
"en-US"
@@ -16872,16 +27960,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11808"
+ "11632"
],
"x-ms-request-id": [
- "f13a5750-53fa-487e-a056-447946b67939"
+ "3edf34cc-2d66-4788-a720-c0852a627a86"
],
"x-ms-correlation-request-id": [
- "f13a5750-53fa-487e-a056-447946b67939"
+ "3edf34cc-2d66-4788-a720-c0852a627a86"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223208Z:f13a5750-53fa-487e-a056-447946b67939"
+ "NORTHCENTRALUS:20200519T191256Z:3edf34cc-2d66-4788-a720-c0852a627a86"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16890,7 +27978,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:07 GMT"
+ "Tue, 19 May 2020 19:12:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16899,20 +27987,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e0d4f4c-9e3d-4ff1-8b8c-cf3972965520"
+ "4fbecb34-3cee-498e-a6d7-8595cc4ce7d3"
],
"Accept-Language": [
"en-US"
@@ -16935,16 +28023,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11806"
+ "11630"
],
"x-ms-request-id": [
- "5af5a384-d631-4be2-8d0d-a93f1fb62848"
+ "05b192c7-6a44-4b4e-873e-54b59d7e3655"
],
"x-ms-correlation-request-id": [
- "5af5a384-d631-4be2-8d0d-a93f1fb62848"
+ "05b192c7-6a44-4b4e-873e-54b59d7e3655"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223208Z:5af5a384-d631-4be2-8d0d-a93f1fb62848"
+ "NORTHCENTRALUS:20200519T191256Z:05b192c7-6a44-4b4e-873e-54b59d7e3655"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16953,7 +28041,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:07 GMT"
+ "Tue, 19 May 2020 19:12:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16962,20 +28050,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48a8b565-c242-4ffd-b92f-096ee34fbdee"
+ "07f3803c-6216-4196-a70f-69bf27e62394"
],
"Accept-Language": [
"en-US"
@@ -16998,16 +28086,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11804"
+ "11628"
],
"x-ms-request-id": [
- "9b86f7f2-f18e-4d30-8fc1-6da51f90884a"
+ "4459de67-a2f5-4df9-8688-ba14f4838eb8"
],
"x-ms-correlation-request-id": [
- "9b86f7f2-f18e-4d30-8fc1-6da51f90884a"
+ "4459de67-a2f5-4df9-8688-ba14f4838eb8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223209Z:9b86f7f2-f18e-4d30-8fc1-6da51f90884a"
+ "NORTHCENTRALUS:20200519T191257Z:4459de67-a2f5-4df9-8688-ba14f4838eb8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17016,7 +28104,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:08 GMT"
+ "Tue, 19 May 2020 19:12:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17025,20 +28113,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8b3b52cd-24fd-4758-bcfd-6a04abda41cc"
+ "ff248e46-1138-4aee-8d53-684001a41698"
],
"Accept-Language": [
"en-US"
@@ -17061,16 +28149,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11802"
+ "11626"
],
"x-ms-request-id": [
- "09f82c43-9de3-4046-bcef-43867c4d04f7"
+ "2924b733-206c-4329-b8fa-7612ba9306da"
],
"x-ms-correlation-request-id": [
- "09f82c43-9de3-4046-bcef-43867c4d04f7"
+ "2924b733-206c-4329-b8fa-7612ba9306da"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223209Z:09f82c43-9de3-4046-bcef-43867c4d04f7"
+ "NORTHCENTRALUS:20200519T191257Z:2924b733-206c-4329-b8fa-7612ba9306da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17079,7 +28167,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:08 GMT"
+ "Tue, 19 May 2020 19:12:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17088,20 +28176,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aaf2c241-e4e4-40a9-bbb2-355f0f7a255d"
+ "24ba1dcb-7562-45b4-9776-16265fe84080"
],
"Accept-Language": [
"en-US"
@@ -17124,16 +28212,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11800"
+ "11624"
],
"x-ms-request-id": [
- "b23efd91-d7ce-4d62-a90d-62487f6a11fc"
+ "0dc8c8e7-ca4d-4b88-91be-214a10d02cc6"
],
"x-ms-correlation-request-id": [
- "b23efd91-d7ce-4d62-a90d-62487f6a11fc"
+ "0dc8c8e7-ca4d-4b88-91be-214a10d02cc6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223210Z:b23efd91-d7ce-4d62-a90d-62487f6a11fc"
+ "NORTHCENTRALUS:20200519T191257Z:0dc8c8e7-ca4d-4b88-91be-214a10d02cc6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17142,7 +28230,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:09 GMT"
+ "Tue, 19 May 2020 19:12:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17151,20 +28239,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32f616d9-67cf-461c-afef-5ee8a55d8230"
+ "60971cfb-f75d-44ea-b4da-b294ae4d97de"
],
"Accept-Language": [
"en-US"
@@ -17187,16 +28275,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11798"
+ "11622"
],
"x-ms-request-id": [
- "5e1d2080-5cb3-4607-be80-9b38b6feb4ff"
+ "552f0512-e6be-4858-8e3e-2444646957bd"
],
"x-ms-correlation-request-id": [
- "5e1d2080-5cb3-4607-be80-9b38b6feb4ff"
+ "552f0512-e6be-4858-8e3e-2444646957bd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223210Z:5e1d2080-5cb3-4607-be80-9b38b6feb4ff"
+ "NORTHCENTRALUS:20200519T191258Z:552f0512-e6be-4858-8e3e-2444646957bd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17205,7 +28293,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:09 GMT"
+ "Tue, 19 May 2020 19:12:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17214,20 +28302,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39ff0a91-83a2-45be-8378-398ed05cbadf"
+ "5acfc1ad-9714-4c92-b860-92ecd448539b"
],
"Accept-Language": [
"en-US"
@@ -17250,16 +28338,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11796"
+ "11620"
],
"x-ms-request-id": [
- "762824df-edc6-4113-8fc8-a56f53d2bbff"
+ "dadd5e39-5557-4320-b16d-848925445541"
],
"x-ms-correlation-request-id": [
- "762824df-edc6-4113-8fc8-a56f53d2bbff"
+ "dadd5e39-5557-4320-b16d-848925445541"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223210Z:762824df-edc6-4113-8fc8-a56f53d2bbff"
+ "NORTHCENTRALUS:20200519T191258Z:dadd5e39-5557-4320-b16d-848925445541"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17268,7 +28356,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:10 GMT"
+ "Tue, 19 May 2020 19:12:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17277,20 +28365,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9502196e-e4d3-4153-895a-aa2f4dc2011e"
+ "4c2a9a39-64cb-447a-8885-12ab56c5aef0"
],
"Accept-Language": [
"en-US"
@@ -17313,16 +28401,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11794"
+ "11618"
],
"x-ms-request-id": [
- "b5c52f6d-5c14-4b0d-9a83-55c3910f5b59"
+ "acab0abf-2caf-44c9-a39d-9fcadfa1c5a4"
],
"x-ms-correlation-request-id": [
- "b5c52f6d-5c14-4b0d-9a83-55c3910f5b59"
+ "acab0abf-2caf-44c9-a39d-9fcadfa1c5a4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223211Z:b5c52f6d-5c14-4b0d-9a83-55c3910f5b59"
+ "NORTHCENTRALUS:20200519T191259Z:acab0abf-2caf-44c9-a39d-9fcadfa1c5a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17331,7 +28419,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:10 GMT"
+ "Tue, 19 May 2020 19:12:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17340,20 +28428,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d1d707c-2f20-40dc-bdde-d201bf3fb2bb"
+ "080d0a3e-ad84-49df-8539-a0dd23e4b509"
],
"Accept-Language": [
"en-US"
@@ -17376,16 +28464,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11792"
+ "11616"
],
"x-ms-request-id": [
- "fd9ce944-85dc-40e5-84ce-65a6466a59e9"
+ "0d6a4f0e-cfda-45d7-859b-21572df5e741"
],
"x-ms-correlation-request-id": [
- "fd9ce944-85dc-40e5-84ce-65a6466a59e9"
+ "0d6a4f0e-cfda-45d7-859b-21572df5e741"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223211Z:fd9ce944-85dc-40e5-84ce-65a6466a59e9"
+ "NORTHCENTRALUS:20200519T191259Z:0d6a4f0e-cfda-45d7-859b-21572df5e741"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17394,7 +28482,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:10 GMT"
+ "Tue, 19 May 2020 19:12:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17403,20 +28491,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9f7216e-370f-42b8-8131-62746f4be8fa"
+ "5ebe3866-e8d9-4609-aaab-84e1ad011642"
],
"Accept-Language": [
"en-US"
@@ -17439,16 +28527,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11790"
+ "11614"
],
"x-ms-request-id": [
- "2fbc7098-18f7-4132-95c6-be9e47a2a0f4"
+ "1b5ce8ec-9ac8-461c-a064-a1bff0c0aefd"
],
"x-ms-correlation-request-id": [
- "2fbc7098-18f7-4132-95c6-be9e47a2a0f4"
+ "1b5ce8ec-9ac8-461c-a064-a1bff0c0aefd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223212Z:2fbc7098-18f7-4132-95c6-be9e47a2a0f4"
+ "NORTHCENTRALUS:20200519T191259Z:1b5ce8ec-9ac8-461c-a064-a1bff0c0aefd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17457,7 +28545,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:11 GMT"
+ "Tue, 19 May 2020 19:12:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17466,20 +28554,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15bc9e80-97d2-4fff-a523-4db8b470a125"
+ "dfcd3eef-1f2c-4e89-8a84-43d50b50c144"
],
"Accept-Language": [
"en-US"
@@ -17502,16 +28590,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11788"
+ "11612"
],
"x-ms-request-id": [
- "fdc9ab8b-8482-45e9-a931-347675167f36"
+ "e3cfe098-c33f-4b5e-9dd9-841261ca181c"
],
"x-ms-correlation-request-id": [
- "fdc9ab8b-8482-45e9-a931-347675167f36"
+ "e3cfe098-c33f-4b5e-9dd9-841261ca181c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223212Z:fdc9ab8b-8482-45e9-a931-347675167f36"
+ "NORTHCENTRALUS:20200519T191300Z:e3cfe098-c33f-4b5e-9dd9-841261ca181c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17520,7 +28608,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:11 GMT"
+ "Tue, 19 May 2020 19:12:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17529,20 +28617,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ebea31e-d18c-4a09-9dd6-e886422b9fec"
+ "a2dfe017-5fb1-4157-a399-6879dd0a1328"
],
"Accept-Language": [
"en-US"
@@ -17565,16 +28653,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11786"
+ "11610"
],
"x-ms-request-id": [
- "4dc74b96-1118-4431-95ff-88d2effcc86b"
+ "5fa9f0f7-8674-459f-aad9-c84dd466c154"
],
"x-ms-correlation-request-id": [
- "4dc74b96-1118-4431-95ff-88d2effcc86b"
+ "5fa9f0f7-8674-459f-aad9-c84dd466c154"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223213Z:4dc74b96-1118-4431-95ff-88d2effcc86b"
+ "NORTHCENTRALUS:20200519T191300Z:5fa9f0f7-8674-459f-aad9-c84dd466c154"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17583,7 +28671,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:12 GMT"
+ "Tue, 19 May 2020 19:13:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17592,20 +28680,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5931af86-76b0-4070-80f5-e8a2b9e8ac09"
+ "ceb697d9-011a-497b-bd66-28cc5fab606f"
],
"Accept-Language": [
"en-US"
@@ -17628,16 +28716,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11784"
+ "11608"
],
"x-ms-request-id": [
- "bb8e7f98-77c4-4e5e-a814-e09ce0970ab2"
+ "2e1a4571-c841-4d82-816a-420ab7bf5134"
],
"x-ms-correlation-request-id": [
- "bb8e7f98-77c4-4e5e-a814-e09ce0970ab2"
+ "2e1a4571-c841-4d82-816a-420ab7bf5134"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223213Z:bb8e7f98-77c4-4e5e-a814-e09ce0970ab2"
+ "NORTHCENTRALUS:20200519T191301Z:2e1a4571-c841-4d82-816a-420ab7bf5134"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17646,7 +28734,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:12 GMT"
+ "Tue, 19 May 2020 19:13:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17655,20 +28743,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe2ea033-8fc7-45ac-918b-3300566b9a63"
+ "db2f3d35-bdb9-4708-89dd-ac647121ac84"
],
"Accept-Language": [
"en-US"
@@ -17691,16 +28779,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11782"
+ "11606"
],
"x-ms-request-id": [
- "63511cd3-7271-43fe-9f55-c68a6a251805"
+ "ee802f95-9a61-4e16-a735-f12dcab3f752"
],
"x-ms-correlation-request-id": [
- "63511cd3-7271-43fe-9f55-c68a6a251805"
+ "ee802f95-9a61-4e16-a735-f12dcab3f752"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223213Z:63511cd3-7271-43fe-9f55-c68a6a251805"
+ "NORTHCENTRALUS:20200519T191301Z:ee802f95-9a61-4e16-a735-f12dcab3f752"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17709,7 +28797,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:12 GMT"
+ "Tue, 19 May 2020 19:13:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17718,20 +28806,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70a03d02-aa67-439e-87da-10474ffc0aad"
+ "b16da720-f40f-4a36-a9e7-fbbff22a29f6"
],
"Accept-Language": [
"en-US"
@@ -17754,16 +28842,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11780"
+ "11604"
],
"x-ms-request-id": [
- "9349d578-3952-4d11-8713-2388e75e1a00"
+ "3cc8d3d8-8174-4ac5-8111-526793f08b87"
],
"x-ms-correlation-request-id": [
- "9349d578-3952-4d11-8713-2388e75e1a00"
+ "3cc8d3d8-8174-4ac5-8111-526793f08b87"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223214Z:9349d578-3952-4d11-8713-2388e75e1a00"
+ "NORTHCENTRALUS:20200519T191302Z:3cc8d3d8-8174-4ac5-8111-526793f08b87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17772,7 +28860,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:13 GMT"
+ "Tue, 19 May 2020 19:13:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17781,20 +28869,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a6df8c22-ea3c-4b10-9845-16de819ccbf9"
+ "6878242c-fb09-4cb7-acd6-d7d1164e5b5f"
],
"Accept-Language": [
"en-US"
@@ -17817,16 +28905,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11778"
+ "11602"
],
"x-ms-request-id": [
- "765240b2-c804-44c2-917d-af299e4e68a3"
+ "1e45eb07-2acc-45b0-a0e5-0e27da67150f"
],
"x-ms-correlation-request-id": [
- "765240b2-c804-44c2-917d-af299e4e68a3"
+ "1e45eb07-2acc-45b0-a0e5-0e27da67150f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223214Z:765240b2-c804-44c2-917d-af299e4e68a3"
+ "NORTHCENTRALUS:20200519T191302Z:1e45eb07-2acc-45b0-a0e5-0e27da67150f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17835,7 +28923,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:13 GMT"
+ "Tue, 19 May 2020 19:13:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17844,20 +28932,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8b276bd8-464f-486e-96e3-6f5bba19486d"
+ "1f6e07cd-b2f2-4bf2-bf76-220507673528"
],
"Accept-Language": [
"en-US"
@@ -17880,16 +28968,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11776"
+ "11600"
],
"x-ms-request-id": [
- "b6b960eb-a489-43db-a0e2-cda331e431b4"
+ "d93300e0-465d-4bb2-bb56-bf8e83e3c62c"
],
"x-ms-correlation-request-id": [
- "b6b960eb-a489-43db-a0e2-cda331e431b4"
+ "d93300e0-465d-4bb2-bb56-bf8e83e3c62c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223215Z:b6b960eb-a489-43db-a0e2-cda331e431b4"
+ "NORTHCENTRALUS:20200519T191302Z:d93300e0-465d-4bb2-bb56-bf8e83e3c62c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17898,7 +28986,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:14 GMT"
+ "Tue, 19 May 2020 19:13:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17907,20 +28995,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e3ad5d1-f5fd-44e8-b929-388145d9cb2b"
+ "52f43efb-254e-4892-aa56-648a6bac184e"
],
"Accept-Language": [
"en-US"
@@ -17943,16 +29031,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11774"
+ "11598"
],
"x-ms-request-id": [
- "4a74fded-e23c-4099-b937-d55b1830a710"
+ "3655598d-3eb8-4e9f-b454-08593893cf9f"
],
"x-ms-correlation-request-id": [
- "4a74fded-e23c-4099-b937-d55b1830a710"
+ "3655598d-3eb8-4e9f-b454-08593893cf9f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223215Z:4a74fded-e23c-4099-b937-d55b1830a710"
+ "NORTHCENTRALUS:20200519T191303Z:3655598d-3eb8-4e9f-b454-08593893cf9f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17961,7 +29049,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:14 GMT"
+ "Tue, 19 May 2020 19:13:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17970,20 +29058,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:12:54.5620001Z\",\r\n \"duration\": \"PT1M12.9569991S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4d0e7d9-42e0-4c09-87bd-f1ce1837c026"
+ "f4bd817a-8b6b-49e0-b3fc-fc676b1b9d5f"
],
"Accept-Language": [
"en-US"
@@ -18006,16 +29094,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11772"
+ "11596"
],
"x-ms-request-id": [
- "e2c591a8-5e8c-40ff-a79b-f0f6521403d8"
+ "02dfbd5d-14f0-499f-817c-0264148d2cc1"
],
"x-ms-correlation-request-id": [
- "e2c591a8-5e8c-40ff-a79b-f0f6521403d8"
+ "02dfbd5d-14f0-499f-817c-0264148d2cc1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223216Z:e2c591a8-5e8c-40ff-a79b-f0f6521403d8"
+ "NORTHCENTRALUS:20200519T191303Z:02dfbd5d-14f0-499f-817c-0264148d2cc1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18024,7 +29112,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:15 GMT"
+ "Tue, 19 May 2020 19:13:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18033,20 +29121,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf6e66f7-b729-4a6e-91e7-84ae6af8f3cd"
+ "129b630c-1348-40ef-a870-c7bafeb3fa4e"
],
"Accept-Language": [
"en-US"
@@ -18069,16 +29157,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11770"
+ "11594"
],
"x-ms-request-id": [
- "47703caa-63f2-4d0d-93ba-c2bc35909980"
+ "48e4448d-3b0f-44c3-bb64-4b34d0bd0724"
],
"x-ms-correlation-request-id": [
- "47703caa-63f2-4d0d-93ba-c2bc35909980"
+ "48e4448d-3b0f-44c3-bb64-4b34d0bd0724"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223216Z:47703caa-63f2-4d0d-93ba-c2bc35909980"
+ "NORTHCENTRALUS:20200519T191304Z:48e4448d-3b0f-44c3-bb64-4b34d0bd0724"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18087,7 +29175,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:15 GMT"
+ "Tue, 19 May 2020 19:13:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18096,20 +29184,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:07.4884946Z\",\r\n \"duration\": \"PT40.4113125S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ab497ac-56ef-4f01-86bc-68b3b61172f2"
+ "8f89dba4-57b9-4f27-95cd-6592b16bca9d"
],
"Accept-Language": [
"en-US"
@@ -18132,16 +29220,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11768"
+ "11592"
],
"x-ms-request-id": [
- "2256997e-12a2-429f-8355-ca32cd90fddb"
+ "636907d7-b725-4765-b53b-8113277e95db"
],
"x-ms-correlation-request-id": [
- "2256997e-12a2-429f-8355-ca32cd90fddb"
+ "636907d7-b725-4765-b53b-8113277e95db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223216Z:2256997e-12a2-429f-8355-ca32cd90fddb"
+ "NORTHCENTRALUS:20200519T191304Z:636907d7-b725-4765-b53b-8113277e95db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18150,7 +29238,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:15 GMT"
+ "Tue, 19 May 2020 19:13:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18159,20 +29247,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a01d62eb-71ba-454e-afd0-6ee20f6efe66"
+ "9166e017-ca80-4dd2-810b-e8bece0bcfcf"
],
"Accept-Language": [
"en-US"
@@ -18195,16 +29283,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11766"
+ "11590"
],
"x-ms-request-id": [
- "50595a57-604f-4a33-b043-d1a9533dd5ed"
+ "a56ea049-03f5-472b-9a93-d3cdf4ec8c42"
],
"x-ms-correlation-request-id": [
- "50595a57-604f-4a33-b043-d1a9533dd5ed"
+ "a56ea049-03f5-472b-9a93-d3cdf4ec8c42"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223217Z:50595a57-604f-4a33-b043-d1a9533dd5ed"
+ "NORTHCENTRALUS:20200519T191304Z:a56ea049-03f5-472b-9a93-d3cdf4ec8c42"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18213,7 +29301,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:16 GMT"
+ "Tue, 19 May 2020 19:13:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18222,20 +29310,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b3cb340-faa0-4b32-bc2d-1a43cde32ef7"
+ "e3a75910-5b21-4291-907b-bc167df14c2c"
],
"Accept-Language": [
"en-US"
@@ -18258,16 +29346,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11764"
+ "11588"
],
"x-ms-request-id": [
- "7aea56bf-f578-421d-8db8-cae252ae9068"
+ "0f7f49d1-53e7-4181-90c9-566509530842"
],
"x-ms-correlation-request-id": [
- "7aea56bf-f578-421d-8db8-cae252ae9068"
+ "0f7f49d1-53e7-4181-90c9-566509530842"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223217Z:7aea56bf-f578-421d-8db8-cae252ae9068"
+ "NORTHCENTRALUS:20200519T191305Z:0f7f49d1-53e7-4181-90c9-566509530842"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18276,7 +29364,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:16 GMT"
+ "Tue, 19 May 2020 19:13:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18285,20 +29373,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec53fef0-1032-4ae7-813a-74a55381abc7"
+ "4fcc3b09-e88d-4290-8952-d82b119e0544"
],
"Accept-Language": [
"en-US"
@@ -18321,16 +29409,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11762"
+ "11586"
],
"x-ms-request-id": [
- "5bfcdc75-9b2e-4b67-a332-f52494290984"
+ "9f9ccab4-f806-4634-af8e-57e0d79bcc9a"
],
"x-ms-correlation-request-id": [
- "5bfcdc75-9b2e-4b67-a332-f52494290984"
+ "9f9ccab4-f806-4634-af8e-57e0d79bcc9a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223218Z:5bfcdc75-9b2e-4b67-a332-f52494290984"
+ "NORTHCENTRALUS:20200519T191305Z:9f9ccab4-f806-4634-af8e-57e0d79bcc9a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18339,7 +29427,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:17 GMT"
+ "Tue, 19 May 2020 19:13:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18348,20 +29436,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ff55231-665a-42f2-909a-441c2ec42d89"
+ "77f24e0d-fb91-457e-be7c-77c65ccf4254"
],
"Accept-Language": [
"en-US"
@@ -18384,16 +29472,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11760"
+ "11584"
],
"x-ms-request-id": [
- "162a44f7-4bfa-41f4-ad96-59794c56303b"
+ "e87b1430-d8fd-420e-b5de-de1aaf50c1c0"
],
"x-ms-correlation-request-id": [
- "162a44f7-4bfa-41f4-ad96-59794c56303b"
+ "e87b1430-d8fd-420e-b5de-de1aaf50c1c0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223218Z:162a44f7-4bfa-41f4-ad96-59794c56303b"
+ "NORTHCENTRALUS:20200519T191306Z:e87b1430-d8fd-420e-b5de-de1aaf50c1c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18402,7 +29490,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:17 GMT"
+ "Tue, 19 May 2020 19:13:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18411,20 +29499,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d26eadb-7a4b-4572-a443-23154288b796"
+ "111c210d-b66f-4505-ba1b-12cf457ed21a"
],
"Accept-Language": [
"en-US"
@@ -18447,16 +29535,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11758"
+ "11582"
],
"x-ms-request-id": [
- "994d910a-b861-446c-a115-1671f56dfc6a"
+ "28d16885-9821-4434-b047-5643eb373747"
],
"x-ms-correlation-request-id": [
- "994d910a-b861-446c-a115-1671f56dfc6a"
+ "28d16885-9821-4434-b047-5643eb373747"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223218Z:994d910a-b861-446c-a115-1671f56dfc6a"
+ "NORTHCENTRALUS:20200519T191306Z:28d16885-9821-4434-b047-5643eb373747"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18465,7 +29553,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:18 GMT"
+ "Tue, 19 May 2020 19:13:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18474,20 +29562,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "698ccb7e-99a5-444a-bcd7-27dcf423bdf6"
+ "212dfd7d-39a3-452c-a1f7-2dc58d448821"
],
"Accept-Language": [
"en-US"
@@ -18510,16 +29598,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11756"
+ "11580"
],
"x-ms-request-id": [
- "68dd7c82-c86e-4973-92d2-416199ae98bb"
+ "3cf9a221-8db1-4fd4-b561-69909667f620"
],
"x-ms-correlation-request-id": [
- "68dd7c82-c86e-4973-92d2-416199ae98bb"
+ "3cf9a221-8db1-4fd4-b561-69909667f620"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223219Z:68dd7c82-c86e-4973-92d2-416199ae98bb"
+ "NORTHCENTRALUS:20200519T191307Z:3cf9a221-8db1-4fd4-b561-69909667f620"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18528,7 +29616,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:18 GMT"
+ "Tue, 19 May 2020 19:13:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18537,20 +29625,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23007db8-6a91-4c7b-b112-f1b0d39aac11"
+ "beb3995c-c9aa-4456-b87a-58aa4c8c2888"
],
"Accept-Language": [
"en-US"
@@ -18573,16 +29661,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11754"
+ "11578"
],
"x-ms-request-id": [
- "06f2ef60-0073-4c77-86f8-5ef21bfd8825"
+ "e60a3c96-c805-42e4-bb36-0e987a4a057b"
],
"x-ms-correlation-request-id": [
- "06f2ef60-0073-4c77-86f8-5ef21bfd8825"
+ "e60a3c96-c805-42e4-bb36-0e987a4a057b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223219Z:06f2ef60-0073-4c77-86f8-5ef21bfd8825"
+ "NORTHCENTRALUS:20200519T191307Z:e60a3c96-c805-42e4-bb36-0e987a4a057b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18591,7 +29679,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:18 GMT"
+ "Tue, 19 May 2020 19:13:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18600,20 +29688,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6daba7b-e835-4dab-a5f2-99d639c151b6"
+ "593b9ec1-a577-4016-aeef-65a00ad4a182"
],
"Accept-Language": [
"en-US"
@@ -18636,16 +29724,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11752"
+ "11576"
],
"x-ms-request-id": [
- "ed5694b4-0104-408c-981f-cff61e432441"
+ "ca79372d-30fa-4ee9-96c0-c1d4cb9b6e72"
],
"x-ms-correlation-request-id": [
- "ed5694b4-0104-408c-981f-cff61e432441"
+ "ca79372d-30fa-4ee9-96c0-c1d4cb9b6e72"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223220Z:ed5694b4-0104-408c-981f-cff61e432441"
+ "NORTHCENTRALUS:20200519T191307Z:ca79372d-30fa-4ee9-96c0-c1d4cb9b6e72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18654,7 +29742,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:19 GMT"
+ "Tue, 19 May 2020 19:13:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18663,20 +29751,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8e1d4f5-031f-4f9e-94df-a086e894cedd"
+ "2904bdde-283f-43e7-a7b4-8e8ce7397da1"
],
"Accept-Language": [
"en-US"
@@ -18699,16 +29787,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11750"
+ "11574"
],
"x-ms-request-id": [
- "8792acf9-9132-4cd1-9e2c-68a09202c73b"
+ "03424f5c-bff1-430a-b4bb-fc6b3174f9bc"
],
"x-ms-correlation-request-id": [
- "8792acf9-9132-4cd1-9e2c-68a09202c73b"
+ "03424f5c-bff1-430a-b4bb-fc6b3174f9bc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223220Z:8792acf9-9132-4cd1-9e2c-68a09202c73b"
+ "NORTHCENTRALUS:20200519T191308Z:03424f5c-bff1-430a-b4bb-fc6b3174f9bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18717,7 +29805,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:19 GMT"
+ "Tue, 19 May 2020 19:13:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18726,20 +29814,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "549c662a-202c-41de-a0a4-624d5061e964"
+ "9a787231-dc7a-4e7e-9cbc-29cfa82f3716"
],
"Accept-Language": [
"en-US"
@@ -18762,16 +29850,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11748"
+ "11572"
],
"x-ms-request-id": [
- "4a3d81f8-314c-4937-9a1c-e5b93f65ed05"
+ "2aa0cd53-64a7-4825-a56a-337d232352a5"
],
"x-ms-correlation-request-id": [
- "4a3d81f8-314c-4937-9a1c-e5b93f65ed05"
+ "2aa0cd53-64a7-4825-a56a-337d232352a5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223221Z:4a3d81f8-314c-4937-9a1c-e5b93f65ed05"
+ "NORTHCENTRALUS:20200519T191308Z:2aa0cd53-64a7-4825-a56a-337d232352a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18780,7 +29868,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:21 GMT"
+ "Tue, 19 May 2020 19:13:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18789,20 +29877,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "874b77ef-9d39-4772-b18f-7f002ac364f7"
+ "914150c7-e318-4edf-ac9b-9276bc2e5e6e"
],
"Accept-Language": [
"en-US"
@@ -18825,16 +29913,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11746"
+ "11570"
],
"x-ms-request-id": [
- "f5f44dcd-0393-48d5-9447-ac4a725711d8"
+ "0fd7f755-b241-43b1-a6f7-a7e2827c99d9"
],
"x-ms-correlation-request-id": [
- "f5f44dcd-0393-48d5-9447-ac4a725711d8"
+ "0fd7f755-b241-43b1-a6f7-a7e2827c99d9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223221Z:f5f44dcd-0393-48d5-9447-ac4a725711d8"
+ "NORTHCENTRALUS:20200519T191309Z:0fd7f755-b241-43b1-a6f7-a7e2827c99d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18843,7 +29931,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:21 GMT"
+ "Tue, 19 May 2020 19:13:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18852,20 +29940,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1acaa905-aca3-44c5-b2f3-ec26c8b80131"
+ "a461a9f8-cc42-46af-8911-17dc84a8bc75"
],
"Accept-Language": [
"en-US"
@@ -18888,16 +29976,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11744"
+ "11568"
],
"x-ms-request-id": [
- "a5b23ed1-5372-46d3-9db9-76ca44d9b50c"
+ "feadbfb6-434e-462d-8247-32752c8d91d8"
],
"x-ms-correlation-request-id": [
- "a5b23ed1-5372-46d3-9db9-76ca44d9b50c"
+ "feadbfb6-434e-462d-8247-32752c8d91d8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223221Z:a5b23ed1-5372-46d3-9db9-76ca44d9b50c"
+ "NORTHCENTRALUS:20200519T191309Z:feadbfb6-434e-462d-8247-32752c8d91d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18906,7 +29994,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:21 GMT"
+ "Tue, 19 May 2020 19:13:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18915,20 +30003,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "264ec32f-4098-47f2-a73a-691c0c49c835"
+ "48570ce8-5d36-44c1-9545-47aeef987d0f"
],
"Accept-Language": [
"en-US"
@@ -18951,16 +30039,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11742"
+ "11566"
],
"x-ms-request-id": [
- "f1138640-f70a-4328-9570-c6ebbd859bd9"
+ "e7274910-1517-4277-a092-e6a739309257"
],
"x-ms-correlation-request-id": [
- "f1138640-f70a-4328-9570-c6ebbd859bd9"
+ "e7274910-1517-4277-a092-e6a739309257"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223222Z:f1138640-f70a-4328-9570-c6ebbd859bd9"
+ "NORTHCENTRALUS:20200519T191309Z:e7274910-1517-4277-a092-e6a739309257"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18969,7 +30057,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:22 GMT"
+ "Tue, 19 May 2020 19:13:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18978,20 +30066,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12d58f29-fa8d-4ad9-9d75-93fb6fa1e9f5"
+ "e5dd95a5-534f-461c-830c-d669af6355fd"
],
"Accept-Language": [
"en-US"
@@ -19014,16 +30102,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11740"
+ "11564"
],
"x-ms-request-id": [
- "b5955cbc-0ecb-44d8-b02f-a5d95d6c64b7"
+ "4df0a85e-6e1e-4fec-b3ec-2d04e3db8a85"
],
"x-ms-correlation-request-id": [
- "b5955cbc-0ecb-44d8-b02f-a5d95d6c64b7"
+ "4df0a85e-6e1e-4fec-b3ec-2d04e3db8a85"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223222Z:b5955cbc-0ecb-44d8-b02f-a5d95d6c64b7"
+ "NORTHCENTRALUS:20200519T191310Z:4df0a85e-6e1e-4fec-b3ec-2d04e3db8a85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19032,7 +30120,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:22 GMT"
+ "Tue, 19 May 2020 19:13:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19041,20 +30129,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d58b7c3e-6e66-4a4d-b27d-6888ff7af541"
+ "f658dc89-c4dc-43fb-9cfb-a1ff83788a63"
],
"Accept-Language": [
"en-US"
@@ -19077,16 +30165,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11738"
+ "11562"
],
"x-ms-request-id": [
- "020bf9d8-3876-49f5-b2ab-2568c2171d28"
+ "73f545b2-36be-48bc-8774-0cf2b1b00642"
],
"x-ms-correlation-request-id": [
- "020bf9d8-3876-49f5-b2ab-2568c2171d28"
+ "73f545b2-36be-48bc-8774-0cf2b1b00642"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223223Z:020bf9d8-3876-49f5-b2ab-2568c2171d28"
+ "NORTHCENTRALUS:20200519T191310Z:73f545b2-36be-48bc-8774-0cf2b1b00642"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19095,7 +30183,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:23 GMT"
+ "Tue, 19 May 2020 19:13:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19104,20 +30192,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03d65778-9dbb-478a-a456-17fedb0af45e"
+ "68a26817-d07d-4007-b191-882cd21514d4"
],
"Accept-Language": [
"en-US"
@@ -19140,16 +30228,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11736"
+ "11560"
],
"x-ms-request-id": [
- "c7498e47-4fca-4dd8-b389-a2fc1f93b014"
+ "b77a921d-28b5-4e41-b355-f976ad66b886"
],
"x-ms-correlation-request-id": [
- "c7498e47-4fca-4dd8-b389-a2fc1f93b014"
+ "b77a921d-28b5-4e41-b355-f976ad66b886"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223223Z:c7498e47-4fca-4dd8-b389-a2fc1f93b014"
+ "NORTHCENTRALUS:20200519T191311Z:b77a921d-28b5-4e41-b355-f976ad66b886"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19158,7 +30246,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:23 GMT"
+ "Tue, 19 May 2020 19:13:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19167,20 +30255,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "753062f8-179f-490e-b178-6c82bf036a0c"
+ "7fb6fb43-8279-4b8d-9b2a-2572ad960648"
],
"Accept-Language": [
"en-US"
@@ -19203,16 +30291,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11734"
+ "11558"
],
"x-ms-request-id": [
- "f4ec7db1-fb19-4879-b4a2-e20aacbb5d50"
+ "675a08a4-7283-49be-8089-0107b16ef0f5"
],
"x-ms-correlation-request-id": [
- "f4ec7db1-fb19-4879-b4a2-e20aacbb5d50"
+ "675a08a4-7283-49be-8089-0107b16ef0f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223224Z:f4ec7db1-fb19-4879-b4a2-e20aacbb5d50"
+ "NORTHCENTRALUS:20200519T191311Z:675a08a4-7283-49be-8089-0107b16ef0f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19221,7 +30309,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:24 GMT"
+ "Tue, 19 May 2020 19:13:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19230,20 +30318,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5adb5b2a-3c5f-41ca-87e6-99a41f0b3dd0"
+ "a6718c7b-d958-450c-b36b-c0ec5dba6ee4"
],
"Accept-Language": [
"en-US"
@@ -19266,16 +30354,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11732"
+ "11556"
],
"x-ms-request-id": [
- "a1ecb3ef-b0fc-4ee6-b58a-8ef67ddba338"
+ "ca731d4a-a9de-4da2-8b08-629d3a4bc6f3"
],
"x-ms-correlation-request-id": [
- "a1ecb3ef-b0fc-4ee6-b58a-8ef67ddba338"
+ "ca731d4a-a9de-4da2-8b08-629d3a4bc6f3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223224Z:a1ecb3ef-b0fc-4ee6-b58a-8ef67ddba338"
+ "NORTHCENTRALUS:20200519T191311Z:ca731d4a-a9de-4da2-8b08-629d3a4bc6f3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19284,7 +30372,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:24 GMT"
+ "Tue, 19 May 2020 19:13:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19293,20 +30381,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8866fc2c-337d-4ec2-ac63-ad47b194fc93"
+ "75e5ba30-8a14-4939-8b22-c5a60709868b"
],
"Accept-Language": [
"en-US"
@@ -19329,16 +30417,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11730"
+ "11554"
],
"x-ms-request-id": [
- "ee7e517e-8e4e-4b0e-8a25-5fa9cfb30db2"
+ "831015db-b1ca-4124-ae5b-fe30092fa7db"
],
"x-ms-correlation-request-id": [
- "ee7e517e-8e4e-4b0e-8a25-5fa9cfb30db2"
+ "831015db-b1ca-4124-ae5b-fe30092fa7db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223224Z:ee7e517e-8e4e-4b0e-8a25-5fa9cfb30db2"
+ "NORTHCENTRALUS:20200519T191312Z:831015db-b1ca-4124-ae5b-fe30092fa7db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19347,7 +30435,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:24 GMT"
+ "Tue, 19 May 2020 19:13:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19356,20 +30444,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "771a0a0f-f304-4be2-889d-1f2aaa606514"
+ "183d0a96-bc8a-48b8-bb36-a4443b3d3e52"
],
"Accept-Language": [
"en-US"
@@ -19392,16 +30480,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11728"
+ "11552"
],
"x-ms-request-id": [
- "5aceffb6-73ca-418f-a5bc-bbad2b9e4317"
+ "08585eae-b621-4311-84f2-678f1dcdd8df"
],
"x-ms-correlation-request-id": [
- "5aceffb6-73ca-418f-a5bc-bbad2b9e4317"
+ "08585eae-b621-4311-84f2-678f1dcdd8df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223225Z:5aceffb6-73ca-418f-a5bc-bbad2b9e4317"
+ "NORTHCENTRALUS:20200519T191312Z:08585eae-b621-4311-84f2-678f1dcdd8df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19410,7 +30498,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:25 GMT"
+ "Tue, 19 May 2020 19:13:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19419,20 +30507,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32b3e51b-e11c-4258-852e-4d8dfcc2b76d"
+ "750ab7e1-7cd0-41cc-92fc-f4590b15c253"
],
"Accept-Language": [
"en-US"
@@ -19455,16 +30543,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11726"
+ "11550"
],
"x-ms-request-id": [
- "b29db966-9d6c-4549-b2f6-2a0459a2bc05"
+ "27420e03-ddc5-4d40-a256-1e459ee38237"
],
"x-ms-correlation-request-id": [
- "b29db966-9d6c-4549-b2f6-2a0459a2bc05"
+ "27420e03-ddc5-4d40-a256-1e459ee38237"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223225Z:b29db966-9d6c-4549-b2f6-2a0459a2bc05"
+ "NORTHCENTRALUS:20200519T191313Z:27420e03-ddc5-4d40-a256-1e459ee38237"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19473,7 +30561,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:25 GMT"
+ "Tue, 19 May 2020 19:13:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19482,20 +30570,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc083c7b-4ea7-4465-ac30-a03a8443c54e"
+ "34bd9446-4738-450a-ad8e-86d3787bc580"
],
"Accept-Language": [
"en-US"
@@ -19518,16 +30606,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11724"
+ "11548"
],
"x-ms-request-id": [
- "ed653244-3fb6-45ff-bb08-85173adc977d"
+ "43a7d4d6-3b69-47c1-b123-88657072fe3f"
],
"x-ms-correlation-request-id": [
- "ed653244-3fb6-45ff-bb08-85173adc977d"
+ "43a7d4d6-3b69-47c1-b123-88657072fe3f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223226Z:ed653244-3fb6-45ff-bb08-85173adc977d"
+ "NORTHCENTRALUS:20200519T191313Z:43a7d4d6-3b69-47c1-b123-88657072fe3f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19536,7 +30624,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:26 GMT"
+ "Tue, 19 May 2020 19:13:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19545,20 +30633,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fa4efbe-3c3d-493e-8788-45ecb079b31d"
+ "91b8f413-c853-4998-800c-7e6bcfd8b8c5"
],
"Accept-Language": [
"en-US"
@@ -19581,16 +30669,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11722"
+ "11546"
],
"x-ms-request-id": [
- "24ab88a6-5c23-4b4b-adf7-755803fd0e23"
+ "cf009707-7b55-4c4c-a936-5db63754e00b"
],
"x-ms-correlation-request-id": [
- "24ab88a6-5c23-4b4b-adf7-755803fd0e23"
+ "cf009707-7b55-4c4c-a936-5db63754e00b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223226Z:24ab88a6-5c23-4b4b-adf7-755803fd0e23"
+ "NORTHCENTRALUS:20200519T191313Z:cf009707-7b55-4c4c-a936-5db63754e00b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19599,7 +30687,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:26 GMT"
+ "Tue, 19 May 2020 19:13:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19608,20 +30696,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:16.6764582Z\",\r\n \"duration\": \"PT49.5992761S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "049534c4-8486-428b-a69c-77d43ffa9e75"
+ "e83f64c9-093a-4d54-90a5-5119cf967af9"
],
"Accept-Language": [
"en-US"
@@ -19644,16 +30732,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11720"
+ "11544"
],
"x-ms-request-id": [
- "a6a9d0fb-b53e-41d5-8084-4fab01839e34"
+ "f8b842ef-8b24-45f1-9f96-87ed73931a0f"
],
"x-ms-correlation-request-id": [
- "a6a9d0fb-b53e-41d5-8084-4fab01839e34"
+ "f8b842ef-8b24-45f1-9f96-87ed73931a0f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223227Z:a6a9d0fb-b53e-41d5-8084-4fab01839e34"
+ "NORTHCENTRALUS:20200519T191314Z:f8b842ef-8b24-45f1-9f96-87ed73931a0f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19662,7 +30750,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:26 GMT"
+ "Tue, 19 May 2020 19:13:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19671,20 +30759,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97843b49-4698-4da6-b073-83592af6295e"
+ "2975eb28-f015-4af2-af91-8e4a49ff732a"
],
"Accept-Language": [
"en-US"
@@ -19707,16 +30795,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11718"
+ "11542"
],
"x-ms-request-id": [
- "f5379bbf-9729-4c4f-9f4d-e29f383b418f"
+ "771b49ff-c7b5-4c77-a262-d1b4336455aa"
],
"x-ms-correlation-request-id": [
- "f5379bbf-9729-4c4f-9f4d-e29f383b418f"
+ "771b49ff-c7b5-4c77-a262-d1b4336455aa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223227Z:f5379bbf-9729-4c4f-9f4d-e29f383b418f"
+ "NORTHCENTRALUS:20200519T191314Z:771b49ff-c7b5-4c77-a262-d1b4336455aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19725,7 +30813,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:27 GMT"
+ "Tue, 19 May 2020 19:13:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19734,20 +30822,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2e68a25-fe0a-4294-bc7e-72837e8832bb"
+ "cef9f722-8fca-4b93-8044-f6e796b089e0"
],
"Accept-Language": [
"en-US"
@@ -19770,16 +30858,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11716"
+ "11540"
],
"x-ms-request-id": [
- "8086efa2-5413-4629-8850-9debd68fc35c"
+ "f0b8ab72-6853-41c0-9331-5e595496e0b3"
],
"x-ms-correlation-request-id": [
- "8086efa2-5413-4629-8850-9debd68fc35c"
+ "f0b8ab72-6853-41c0-9331-5e595496e0b3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223227Z:8086efa2-5413-4629-8850-9debd68fc35c"
+ "NORTHCENTRALUS:20200519T191315Z:f0b8ab72-6853-41c0-9331-5e595496e0b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19788,7 +30876,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:27 GMT"
+ "Tue, 19 May 2020 19:13:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19797,20 +30885,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "45adec13-8af5-4634-8315-b901b8f669ce"
+ "3f776a99-a93d-4a35-a022-000349e63316"
],
"Accept-Language": [
"en-US"
@@ -19833,16 +30921,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11714"
+ "11538"
],
"x-ms-request-id": [
- "3f91d1fe-6a2d-461f-b3c8-e7bf51ca2321"
+ "96088ea3-f9d2-4c4c-a526-fe13b44323e9"
],
"x-ms-correlation-request-id": [
- "3f91d1fe-6a2d-461f-b3c8-e7bf51ca2321"
+ "96088ea3-f9d2-4c4c-a526-fe13b44323e9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223228Z:3f91d1fe-6a2d-461f-b3c8-e7bf51ca2321"
+ "NORTHCENTRALUS:20200519T191315Z:96088ea3-f9d2-4c4c-a526-fe13b44323e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19851,7 +30939,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:28 GMT"
+ "Tue, 19 May 2020 19:13:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19860,20 +30948,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8668bd51-e3f1-4142-93f8-ded098ee8e44"
+ "e094ffcd-59aa-4373-8daf-61d4d49336c0"
],
"Accept-Language": [
"en-US"
@@ -19896,16 +30984,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11712"
+ "11536"
],
"x-ms-request-id": [
- "839efbe7-69d6-4fc6-b868-dd424f4e48d4"
+ "9190f347-8ca5-4c78-9cba-28022973a0c7"
],
"x-ms-correlation-request-id": [
- "839efbe7-69d6-4fc6-b868-dd424f4e48d4"
+ "9190f347-8ca5-4c78-9cba-28022973a0c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223229Z:839efbe7-69d6-4fc6-b868-dd424f4e48d4"
+ "NORTHCENTRALUS:20200519T191316Z:9190f347-8ca5-4c78-9cba-28022973a0c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19914,7 +31002,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:28 GMT"
+ "Tue, 19 May 2020 19:13:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19923,20 +31011,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "73e5c41a-4ec4-4a14-bccf-3e05a480f34f"
+ "3c9a3636-49e4-4b90-bb65-94510f6643d8"
],
"Accept-Language": [
"en-US"
@@ -19959,16 +31047,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11710"
+ "11534"
],
"x-ms-request-id": [
- "7f05b19e-6dea-4fe4-bcc5-db79836fc5d8"
+ "0dbdeb31-eff1-45e9-8c29-4d23c2f497da"
],
"x-ms-correlation-request-id": [
- "7f05b19e-6dea-4fe4-bcc5-db79836fc5d8"
+ "0dbdeb31-eff1-45e9-8c29-4d23c2f497da"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223229Z:7f05b19e-6dea-4fe4-bcc5-db79836fc5d8"
+ "NORTHCENTRALUS:20200519T191316Z:0dbdeb31-eff1-45e9-8c29-4d23c2f497da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19977,7 +31065,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:29 GMT"
+ "Tue, 19 May 2020 19:13:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19986,20 +31074,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dda7c922-feae-4d5d-a4f0-9fc43437ad99"
+ "cdab4aa9-b57e-4ce4-af77-539a29469e80"
],
"Accept-Language": [
"en-US"
@@ -20022,16 +31110,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11708"
+ "11532"
],
"x-ms-request-id": [
- "2509bd76-ffd5-42a0-a634-27744dc4e4be"
+ "8e070c2d-6225-41f8-849f-ba915da6273c"
],
"x-ms-correlation-request-id": [
- "2509bd76-ffd5-42a0-a634-27744dc4e4be"
+ "8e070c2d-6225-41f8-849f-ba915da6273c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223229Z:2509bd76-ffd5-42a0-a634-27744dc4e4be"
+ "NORTHCENTRALUS:20200519T191316Z:8e070c2d-6225-41f8-849f-ba915da6273c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20040,7 +31128,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:29 GMT"
+ "Tue, 19 May 2020 19:13:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20049,20 +31137,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f19d3a3f-2627-4345-b495-9166b23c4f2b"
+ "2ea94f64-9120-40c7-8b2d-80ac96df5afc"
],
"Accept-Language": [
"en-US"
@@ -20085,16 +31173,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11706"
+ "11530"
],
"x-ms-request-id": [
- "aa54804a-59e7-4f35-9fff-90de097df36e"
+ "c3549118-72de-4003-a295-d7e97bb993a0"
],
"x-ms-correlation-request-id": [
- "aa54804a-59e7-4f35-9fff-90de097df36e"
+ "c3549118-72de-4003-a295-d7e97bb993a0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223230Z:aa54804a-59e7-4f35-9fff-90de097df36e"
+ "NORTHCENTRALUS:20200519T191317Z:c3549118-72de-4003-a295-d7e97bb993a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20103,7 +31191,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:30 GMT"
+ "Tue, 19 May 2020 19:13:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20112,20 +31200,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "823887d7-633c-46e1-b34c-1b89679c4abf"
+ "e0ed7a81-4301-431a-8e3b-67f91db96855"
],
"Accept-Language": [
"en-US"
@@ -20148,16 +31236,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11704"
+ "11528"
],
"x-ms-request-id": [
- "e90027d2-c3f0-4f0c-a966-2a5ec0393932"
+ "163b0aef-dc6e-4bed-af7b-e751efcec7be"
],
"x-ms-correlation-request-id": [
- "e90027d2-c3f0-4f0c-a966-2a5ec0393932"
+ "163b0aef-dc6e-4bed-af7b-e751efcec7be"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223230Z:e90027d2-c3f0-4f0c-a966-2a5ec0393932"
+ "NORTHCENTRALUS:20200519T191317Z:163b0aef-dc6e-4bed-af7b-e751efcec7be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20166,7 +31254,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:30 GMT"
+ "Tue, 19 May 2020 19:13:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20175,20 +31263,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5910f526-fabc-4358-b496-5754440b094c"
+ "104ca2b6-2b8c-4e46-ae4d-773d8c355eeb"
],
"Accept-Language": [
"en-US"
@@ -20211,16 +31299,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11702"
+ "11526"
],
"x-ms-request-id": [
- "955dda70-7200-461d-8a6c-65a4880311a6"
+ "d16285dd-1016-4a77-8a44-f342b202e6ba"
],
"x-ms-correlation-request-id": [
- "955dda70-7200-461d-8a6c-65a4880311a6"
+ "d16285dd-1016-4a77-8a44-f342b202e6ba"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223231Z:955dda70-7200-461d-8a6c-65a4880311a6"
+ "NORTHCENTRALUS:20200519T191318Z:d16285dd-1016-4a77-8a44-f342b202e6ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20229,7 +31317,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:31 GMT"
+ "Tue, 19 May 2020 19:13:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20238,20 +31326,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ed356bd-ec2d-48b4-9391-ce0cf78173d8"
+ "c63a9947-f235-45c4-ae50-7fe477067731"
],
"Accept-Language": [
"en-US"
@@ -20274,16 +31362,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11700"
+ "11524"
],
"x-ms-request-id": [
- "93ce810b-26e3-4a1a-a076-b6b9bc1facf8"
+ "fe6f49bb-cfd5-47a5-924d-8f8ebe1f8c37"
],
"x-ms-correlation-request-id": [
- "93ce810b-26e3-4a1a-a076-b6b9bc1facf8"
+ "fe6f49bb-cfd5-47a5-924d-8f8ebe1f8c37"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223231Z:93ce810b-26e3-4a1a-a076-b6b9bc1facf8"
+ "NORTHCENTRALUS:20200519T191318Z:fe6f49bb-cfd5-47a5-924d-8f8ebe1f8c37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20292,7 +31380,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:31 GMT"
+ "Tue, 19 May 2020 19:13:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20301,20 +31389,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2908783c-8b68-4aa7-abff-7c243ad9a3f8"
+ "65b81c00-7a43-4565-9b11-59adfcb7afe0"
],
"Accept-Language": [
"en-US"
@@ -20337,16 +31425,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11698"
+ "11522"
],
"x-ms-request-id": [
- "af95c3ae-fd26-4c99-ba3f-b5c62290c1b5"
+ "0d2740f8-0d4f-44db-8e0d-529c7e971d42"
],
"x-ms-correlation-request-id": [
- "af95c3ae-fd26-4c99-ba3f-b5c62290c1b5"
+ "0d2740f8-0d4f-44db-8e0d-529c7e971d42"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223232Z:af95c3ae-fd26-4c99-ba3f-b5c62290c1b5"
+ "NORTHCENTRALUS:20200519T191318Z:0d2740f8-0d4f-44db-8e0d-529c7e971d42"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20355,7 +31443,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:31 GMT"
+ "Tue, 19 May 2020 19:13:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20364,20 +31452,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15be355f-4537-4f94-9e84-6cdfb8135a56"
+ "4215076f-5a45-4ab4-8d76-7b847873cd12"
],
"Accept-Language": [
"en-US"
@@ -20400,16 +31488,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11696"
+ "11520"
],
"x-ms-request-id": [
- "c5936bc1-1a1d-4093-981d-2b0d18803e38"
+ "910cb906-5a30-4365-bdf1-6d1ad2eb757e"
],
"x-ms-correlation-request-id": [
- "c5936bc1-1a1d-4093-981d-2b0d18803e38"
+ "910cb906-5a30-4365-bdf1-6d1ad2eb757e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223232Z:c5936bc1-1a1d-4093-981d-2b0d18803e38"
+ "NORTHCENTRALUS:20200519T191319Z:910cb906-5a30-4365-bdf1-6d1ad2eb757e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20418,7 +31506,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:32 GMT"
+ "Tue, 19 May 2020 19:13:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20427,20 +31515,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d405b4fa-516d-4554-9080-3a9c26486b8f"
+ "2cffc818-05af-48b0-b923-6efbe44511ab"
],
"Accept-Language": [
"en-US"
@@ -20463,16 +31551,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11694"
+ "11518"
],
"x-ms-request-id": [
- "96173281-a123-4f72-887e-36259ffd89fe"
+ "dc835bf3-6bea-4b0c-b05a-b608b2726706"
],
"x-ms-correlation-request-id": [
- "96173281-a123-4f72-887e-36259ffd89fe"
+ "dc835bf3-6bea-4b0c-b05a-b608b2726706"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223232Z:96173281-a123-4f72-887e-36259ffd89fe"
+ "NORTHCENTRALUS:20200519T191319Z:dc835bf3-6bea-4b0c-b05a-b608b2726706"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20481,7 +31569,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:32 GMT"
+ "Tue, 19 May 2020 19:13:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20490,20 +31578,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "678ee7e2-7c4f-4944-8ac0-16bd6d074d56"
+ "0f19e933-4a8c-4387-8e16-b42a285e5436"
],
"Accept-Language": [
"en-US"
@@ -20526,16 +31614,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11692"
+ "11516"
],
"x-ms-request-id": [
- "f89a98e7-2547-4f1b-adf4-c1b6f66884e5"
+ "b8d1d3f5-c957-4fca-bb9a-60a80c7014f5"
],
"x-ms-correlation-request-id": [
- "f89a98e7-2547-4f1b-adf4-c1b6f66884e5"
+ "b8d1d3f5-c957-4fca-bb9a-60a80c7014f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223233Z:f89a98e7-2547-4f1b-adf4-c1b6f66884e5"
+ "NORTHCENTRALUS:20200519T191320Z:b8d1d3f5-c957-4fca-bb9a-60a80c7014f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20544,7 +31632,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:33 GMT"
+ "Tue, 19 May 2020 19:13:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20553,20 +31641,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4eeb441e-bbc2-436e-9e86-4d2499e85737"
+ "c886926e-e855-4e01-9f0b-05f4401c84ec"
],
"Accept-Language": [
"en-US"
@@ -20589,16 +31677,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11690"
+ "11514"
],
"x-ms-request-id": [
- "548f61a7-bfe1-4a50-aa58-025568c6e1ed"
+ "04f13fce-e5db-4e33-b74b-54bf026b7e95"
],
"x-ms-correlation-request-id": [
- "548f61a7-bfe1-4a50-aa58-025568c6e1ed"
+ "04f13fce-e5db-4e33-b74b-54bf026b7e95"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223233Z:548f61a7-bfe1-4a50-aa58-025568c6e1ed"
+ "NORTHCENTRALUS:20200519T191320Z:04f13fce-e5db-4e33-b74b-54bf026b7e95"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20607,7 +31695,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:33 GMT"
+ "Tue, 19 May 2020 19:13:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20616,20 +31704,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecc5502a-73d9-4bcf-887e-21a6e493eae5"
+ "ec4d57b3-6020-4cc6-9323-45885489b212"
],
"Accept-Language": [
"en-US"
@@ -20652,16 +31740,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11688"
+ "11512"
],
"x-ms-request-id": [
- "b8c4fc4b-8c99-4636-8c16-ef3ad7acad84"
+ "085d60f1-f378-4769-ba79-73897a931393"
],
"x-ms-correlation-request-id": [
- "b8c4fc4b-8c99-4636-8c16-ef3ad7acad84"
+ "085d60f1-f378-4769-ba79-73897a931393"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223234Z:b8c4fc4b-8c99-4636-8c16-ef3ad7acad84"
+ "NORTHCENTRALUS:20200519T191320Z:085d60f1-f378-4769-ba79-73897a931393"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20670,7 +31758,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:33 GMT"
+ "Tue, 19 May 2020 19:13:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20679,20 +31767,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e0698a4-68f8-4053-aa86-bdb59b33ef8d"
+ "6e613022-1bef-4306-a728-fcebb828d29c"
],
"Accept-Language": [
"en-US"
@@ -20715,16 +31803,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11686"
+ "11510"
],
"x-ms-request-id": [
- "48eda19f-51e6-42da-ac23-647bdede82c0"
+ "6a41f65d-b7ad-4085-84ac-9899470ba5c5"
],
"x-ms-correlation-request-id": [
- "48eda19f-51e6-42da-ac23-647bdede82c0"
+ "6a41f65d-b7ad-4085-84ac-9899470ba5c5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223234Z:48eda19f-51e6-42da-ac23-647bdede82c0"
+ "NORTHCENTRALUS:20200519T191321Z:6a41f65d-b7ad-4085-84ac-9899470ba5c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20733,7 +31821,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:34 GMT"
+ "Tue, 19 May 2020 19:13:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20742,20 +31830,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d96de349-7055-411e-91a2-50befb8d1b1d"
+ "b8b48a54-f6f1-4a2b-91f8-c41c67d27589"
],
"Accept-Language": [
"en-US"
@@ -20778,16 +31866,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11684"
+ "11508"
],
"x-ms-request-id": [
- "745cedd8-472e-48cd-a808-9a2aa9afa5d5"
+ "7b7f4d71-518e-4721-9c85-4854ef98dd85"
],
"x-ms-correlation-request-id": [
- "745cedd8-472e-48cd-a808-9a2aa9afa5d5"
+ "7b7f4d71-518e-4721-9c85-4854ef98dd85"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223234Z:745cedd8-472e-48cd-a808-9a2aa9afa5d5"
+ "NORTHCENTRALUS:20200519T191321Z:7b7f4d71-518e-4721-9c85-4854ef98dd85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20796,7 +31884,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:34 GMT"
+ "Tue, 19 May 2020 19:13:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20805,20 +31893,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f3fb30ef-d39d-45fc-838e-1b49f3bba4b8"
+ "dd2935dd-f0bf-4739-b95c-36ce270a7fc1"
],
"Accept-Language": [
"en-US"
@@ -20841,16 +31929,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11682"
+ "11506"
],
"x-ms-request-id": [
- "14961dfb-f75d-4adc-9440-bfda8070d38a"
+ "d6d6c443-5ec0-4661-a079-784d62534b8d"
],
"x-ms-correlation-request-id": [
- "14961dfb-f75d-4adc-9440-bfda8070d38a"
+ "d6d6c443-5ec0-4661-a079-784d62534b8d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223235Z:14961dfb-f75d-4adc-9440-bfda8070d38a"
+ "NORTHCENTRALUS:20200519T191322Z:d6d6c443-5ec0-4661-a079-784d62534b8d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20859,7 +31947,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:35 GMT"
+ "Tue, 19 May 2020 19:13:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20868,20 +31956,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "876bcfc5-375e-4a42-9c9a-3699afe9dba4"
+ "5406e197-c715-4c85-849d-5bc8e0a46d2e"
],
"Accept-Language": [
"en-US"
@@ -20904,16 +31992,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11680"
+ "11504"
],
"x-ms-request-id": [
- "2dd3741e-b5bd-4e88-95f6-86c156f34bd5"
+ "94c59ebd-8fbb-467b-af7c-b53749694eab"
],
"x-ms-correlation-request-id": [
- "2dd3741e-b5bd-4e88-95f6-86c156f34bd5"
+ "94c59ebd-8fbb-467b-af7c-b53749694eab"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223235Z:2dd3741e-b5bd-4e88-95f6-86c156f34bd5"
+ "NORTHCENTRALUS:20200519T191322Z:94c59ebd-8fbb-467b-af7c-b53749694eab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20922,7 +32010,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:35 GMT"
+ "Tue, 19 May 2020 19:13:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20931,20 +32019,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54ec8341-212a-4a03-9c22-e4976f43d73a"
+ "60c2c52f-acc9-4561-91c3-ad16a4f71a59"
],
"Accept-Language": [
"en-US"
@@ -20967,16 +32055,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11678"
+ "11502"
],
"x-ms-request-id": [
- "46027912-49aa-4ce3-bf8e-fefd1a18e9e5"
+ "26742a4f-b7aa-44d7-a2bd-54fc009c3e0b"
],
"x-ms-correlation-request-id": [
- "46027912-49aa-4ce3-bf8e-fefd1a18e9e5"
+ "26742a4f-b7aa-44d7-a2bd-54fc009c3e0b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223236Z:46027912-49aa-4ce3-bf8e-fefd1a18e9e5"
+ "NORTHCENTRALUS:20200519T191323Z:26742a4f-b7aa-44d7-a2bd-54fc009c3e0b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20985,7 +32073,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:36 GMT"
+ "Tue, 19 May 2020 19:13:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20994,20 +32082,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "765d4d51-056c-4903-b6f0-97b1412c9335"
+ "37cb74b9-7aac-4c5c-938d-4364c484aa72"
],
"Accept-Language": [
"en-US"
@@ -21030,16 +32118,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11676"
+ "11500"
],
"x-ms-request-id": [
- "e9f8d4e4-ef85-44b1-930b-6e31356424af"
+ "eb9b31c6-5ee2-4ebe-8598-cd8c2698d571"
],
"x-ms-correlation-request-id": [
- "e9f8d4e4-ef85-44b1-930b-6e31356424af"
+ "eb9b31c6-5ee2-4ebe-8598-cd8c2698d571"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223236Z:e9f8d4e4-ef85-44b1-930b-6e31356424af"
+ "NORTHCENTRALUS:20200519T191323Z:eb9b31c6-5ee2-4ebe-8598-cd8c2698d571"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21048,7 +32136,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:36 GMT"
+ "Tue, 19 May 2020 19:13:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21057,20 +32145,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "faf7aa9d-6bfb-44c6-9dcf-62d7da17c60a"
+ "437b50c4-ebf1-4a08-8f06-fca7a1f97faf"
],
"Accept-Language": [
"en-US"
@@ -21093,16 +32181,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11674"
+ "11498"
],
"x-ms-request-id": [
- "e53f121e-9dee-4aac-9a7b-75f385e38d75"
+ "01033a9a-9c5a-45d4-ac5e-d60f195cb902"
],
"x-ms-correlation-request-id": [
- "e53f121e-9dee-4aac-9a7b-75f385e38d75"
+ "01033a9a-9c5a-45d4-ac5e-d60f195cb902"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223237Z:e53f121e-9dee-4aac-9a7b-75f385e38d75"
+ "NORTHCENTRALUS:20200519T191323Z:01033a9a-9c5a-45d4-ac5e-d60f195cb902"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21111,7 +32199,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:36 GMT"
+ "Tue, 19 May 2020 19:13:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21120,20 +32208,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78506789-6bbc-4fd4-a440-75029a555d32"
+ "5a2f883d-80b8-40fa-a1fb-c06197b94564"
],
"Accept-Language": [
"en-US"
@@ -21156,16 +32244,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11672"
+ "11496"
],
"x-ms-request-id": [
- "2d0d2a80-fda1-4a2d-a26d-4aac1f72ca0e"
+ "bf39fca1-5c31-4e2a-8b09-8ca1cf7169a2"
],
"x-ms-correlation-request-id": [
- "2d0d2a80-fda1-4a2d-a26d-4aac1f72ca0e"
+ "bf39fca1-5c31-4e2a-8b09-8ca1cf7169a2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223237Z:2d0d2a80-fda1-4a2d-a26d-4aac1f72ca0e"
+ "NORTHCENTRALUS:20200519T191324Z:bf39fca1-5c31-4e2a-8b09-8ca1cf7169a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21174,7 +32262,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:37 GMT"
+ "Tue, 19 May 2020 19:13:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21183,20 +32271,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a83988ce-0652-4056-bc0e-5064930bca12"
+ "c337057b-aa6b-4ca2-9856-175593683252"
],
"Accept-Language": [
"en-US"
@@ -21219,16 +32307,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11670"
+ "11494"
],
"x-ms-request-id": [
- "c5be415e-5c7b-45a3-bcdf-65f31e010e09"
+ "cf1e4720-94d9-46c5-a96e-e33817fb6599"
],
"x-ms-correlation-request-id": [
- "c5be415e-5c7b-45a3-bcdf-65f31e010e09"
+ "cf1e4720-94d9-46c5-a96e-e33817fb6599"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223237Z:c5be415e-5c7b-45a3-bcdf-65f31e010e09"
+ "NORTHCENTRALUS:20200519T191324Z:cf1e4720-94d9-46c5-a96e-e33817fb6599"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21237,7 +32325,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:37 GMT"
+ "Tue, 19 May 2020 19:13:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21246,20 +32334,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a99dfe1-1fda-46b7-916a-9d8ecbb420cd"
+ "740426ea-b1eb-40d6-86f1-2ec92356b6f9"
],
"Accept-Language": [
"en-US"
@@ -21282,16 +32370,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11668"
+ "11492"
],
"x-ms-request-id": [
- "a25f90d5-a322-45e4-9b71-c9f069b027fb"
+ "d0f1ac97-c089-4ebf-b147-a55cd554ca55"
],
"x-ms-correlation-request-id": [
- "a25f90d5-a322-45e4-9b71-c9f069b027fb"
+ "d0f1ac97-c089-4ebf-b147-a55cd554ca55"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223238Z:a25f90d5-a322-45e4-9b71-c9f069b027fb"
+ "NORTHCENTRALUS:20200519T191325Z:d0f1ac97-c089-4ebf-b147-a55cd554ca55"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21300,7 +32388,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:38 GMT"
+ "Tue, 19 May 2020 19:13:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21309,20 +32397,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1427"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:32:26.6769702Z\",\r\n \"duration\": \"PT59.5997881S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:13:03.3096259Z\",\r\n \"duration\": \"PT1M21.7046249S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deployments/ps2204?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyMDQ/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deployments/ps6348?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczYzNDg/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "690ab474-0793-4a1f-8a97-9ceab0bb0cf0"
+ "bee07880-42cd-4d15-98de-d19efe01c521"
],
"Accept-Language": [
"en-US"
@@ -21342,16 +32430,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11666"
+ "11490"
],
"x-ms-request-id": [
- "758d6dbe-119b-4f81-90eb-99db0c5d4649"
+ "68a29202-a014-49e6-9fa3-a2aa51074d0e"
],
"x-ms-correlation-request-id": [
- "758d6dbe-119b-4f81-90eb-99db0c5d4649"
+ "68a29202-a014-49e6-9fa3-a2aa51074d0e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223238Z:758d6dbe-119b-4f81-90eb-99db0c5d4649"
+ "NORTHCENTRALUS:20200519T191325Z:68a29202-a014-49e6-9fa3-a2aa51074d0e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21360,7 +32448,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:38 GMT"
+ "Tue, 19 May 2020 19:13:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21369,23 +32457,23 @@
"-1"
],
"Content-Length": [
- "8452"
+ "8618"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deployments/ps2204\",\r\n \"name\": \"ps2204\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:32:38.2528456Z\",\r\n \"duration\": \"PT1M11.1756635S\",\r\n \"correlationId\": \"334395e4-1cc9-43fd-a4da-973bfb150f21\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"result\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deployments/ps6348\",\r\n \"name\": \"ps6348\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-19T19:13:25.2493648Z\",\r\n \"duration\": \"PT1M43.6443638S\",\r\n \"correlationId\": \"1ee86c18-63e7-477d-8147-e0f4f388d56a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"result\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default?api-version=2019-10-01-preview&tail=0",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default?api-version=2019-10-01-preview&tail=0",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "685bc8a6-27aa-4968-ab87-9f1f30eec0fb"
+ "af407c7b-bfc5-44f9-8af1-75d91abb3c3a"
],
"Accept-Language": [
"en-US"
@@ -21405,7 +32493,7 @@
"no-cache"
],
"x-ms-request-id": [
- "724f7bf7-5395-43f5-b783-f2da9267fd42"
+ "3e52c032-bd2e-4022-9865-3c613050017e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -21414,10 +32502,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "6eb65b2d-fc31-4df4-b152-8ac11cb65ec6"
+ "b343ebf0-5ff9-465c-8d07-ca5d5b067f72"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223239Z:6eb65b2d-fc31-4df4-b152-8ac11cb65ec6"
+ "NORTHCENTRALUS:20200519T191326Z:b343ebf0-5ff9-465c-8d07-ca5d5b067f72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21426,10 +32514,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:39 GMT"
+ "Tue, 19 May 2020 19:13:25 GMT"
],
"Content-Length": [
- "7451"
+ "7625"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21441,17 +32529,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default?api-version=2019-10-01-preview&tail=0",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default?api-version=2019-10-01-preview&tail=0",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99ebacca-0cfe-4d6a-b1ab-85e2eaab632a"
+ "f107aeb7-5b1c-44cf-ba11-f04074a906bf"
],
"Accept-Language": [
"en-US"
@@ -21471,19 +32559,19 @@
"no-cache"
],
"x-ms-request-id": [
- "8352a3e0-6327-4495-8467-c7f194152467"
+ "2e89ecfe-78ff-4f8c-9d55-31f8bc2a1c94"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "e576847c-bd8e-4aa6-ad10-a11622042a1d"
+ "ad03296b-59db-4582-b0e5-67082df5967d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223240Z:e576847c-bd8e-4aa6-ad10-a11622042a1d"
+ "NORTHCENTRALUS:20200519T191327Z:ad03296b-59db-4582-b0e5-67082df5967d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21492,10 +32580,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:39 GMT"
+ "Tue, 19 May 2020 19:13:27 GMT"
],
"Content-Length": [
- "7451"
+ "7625"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21507,17 +32595,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default?api-version=2019-10-01-preview&tail=0",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default?api-version=2019-10-01-preview&tail=0",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d7ca421d-47ae-4862-a06d-1a874169e862"
+ "246cbba3-693f-4bd3-8308-0e791c120120"
],
"Accept-Language": [
"en-US"
@@ -21537,7 +32625,7 @@
"no-cache"
],
"x-ms-request-id": [
- "27ce7c87-2f33-4534-889c-eac6d28287ef"
+ "a4d61dcc-0b08-45ff-a5e5-b771366c3577"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -21546,10 +32634,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "b8b77c5c-76e0-484a-a7fb-5c5abdfd53f2"
+ "20f2f2b4-adb3-4a8b-85a9-fcaf78ea701e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223242Z:b8b77c5c-76e0-484a-a7fb-5c5abdfd53f2"
+ "NORTHCENTRALUS:20200519T191329Z:20f2f2b4-adb3-4a8b-85a9-fcaf78ea701e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21558,10 +32646,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:41 GMT"
+ "Tue, 19 May 2020 19:13:28 GMT"
],
"Content-Length": [
- "7451"
+ "7625"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21573,17 +32661,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default?api-version=2019-10-01-preview&tail=2",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default?api-version=2019-10-01-preview&tail=2",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74a79ada-7b2c-4a17-b306-0b7d134bb5f4"
+ "56940911-cb00-4835-a4a3-321587c7fbaa"
],
"Accept-Language": [
"en-US"
@@ -21603,19 +32691,19 @@
"no-cache"
],
"x-ms-request-id": [
- "eefbfd59-974c-475a-8cb9-8eff41f2805f"
+ "f4d5f703-f637-4c14-b198-b296e138cb76"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "8ba7863d-7803-40ea-9259-fecfbd589db8"
+ "61bb8211-6ee4-4401-b1f4-631d5d296f75"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223239Z:8ba7863d-7803-40ea-9259-fecfbd589db8"
+ "NORTHCENTRALUS:20200519T191326Z:61bb8211-6ee4-4401-b1f4-631d5d296f75"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21624,10 +32712,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:39 GMT"
+ "Tue, 19 May 2020 19:13:25 GMT"
],
"Content-Length": [
- "7418"
+ "7592"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21639,17 +32727,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default?api-version=2019-10-01-preview&tail=2",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default?api-version=2019-10-01-preview&tail=2",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a9f7360-2f04-4e36-a795-2a164727b79f"
+ "c5f2eb13-e73b-49e3-a0cd-1d68cd8bcc83"
],
"Accept-Language": [
"en-US"
@@ -21669,19 +32757,19 @@
"no-cache"
],
"x-ms-request-id": [
- "afef0595-c9f0-4bd8-ac24-1b36fea49079"
+ "5ed1a8bb-bddc-486d-9237-7a37a8b71ee0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "9222"
+ "11999"
],
"x-ms-correlation-request-id": [
- "6602eaf9-621f-4b04-9094-51f2fa6a53ed"
+ "5a2471fc-f0bd-42c3-adc2-259227b1e152"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223240Z:6602eaf9-621f-4b04-9094-51f2fa6a53ed"
+ "NORTHCENTRALUS:20200519T191327Z:5a2471fc-f0bd-42c3-adc2-259227b1e152"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21690,10 +32778,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:40 GMT"
+ "Tue, 19 May 2020 19:13:27 GMT"
],
"Content-Length": [
- "7418"
+ "7592"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21705,17 +32793,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default?api-version=2019-10-01-preview&tail=2",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default?api-version=2019-10-01-preview&tail=2",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a6e738b-ec9c-416a-8e5d-ed1c57b63902"
+ "dcd18581-00b6-4ca3-884e-af167e0d9c50"
],
"Accept-Language": [
"en-US"
@@ -21735,7 +32823,7 @@
"no-cache"
],
"x-ms-request-id": [
- "27aba1e5-8724-4bcd-851b-44f1f6c6ca9b"
+ "0be5403c-ff02-4999-aab0-cf59346f5a58"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -21744,10 +32832,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "8ae35bd4-222a-4e4f-a23a-c0d113a38098"
+ "c44780f5-f000-4e9b-b693-de7db93bdded"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223243Z:8ae35bd4-222a-4e4f-a23a-c0d113a38098"
+ "NORTHCENTRALUS:20200519T191330Z:c44780f5-f000-4e9b-b693-de7db93bdded"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21756,10 +32844,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:42 GMT"
+ "Tue, 19 May 2020 19:13:30 GMT"
],
"Content-Length": [
- "7418"
+ "7592"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21771,17 +32859,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73?api-version=2019-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b?api-version=2019-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "308fd24d-0dcb-4cb6-b3b5-08e843d3a5f1"
+ "b9fed46d-2aa9-4358-8ea5-4fef02b7c962"
],
"Accept-Language": [
"en-US"
@@ -21801,19 +32889,19 @@
"no-cache"
],
"x-ms-request-id": [
- "92db9d5f-f369-4bf4-a3b1-e3fb688321f7"
+ "ec685552-240c-421a-ab5c-525927e71e7f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11999"
],
"x-ms-correlation-request-id": [
- "68e23da9-da4e-4159-8620-e4988a2283d4"
+ "8d93970b-26ae-44e9-96bf-41d09cb340aa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223241Z:68e23da9-da4e-4159-8620-e4988a2283d4"
+ "NORTHCENTRALUS:20200519T191328Z:8d93970b-26ae-44e9-96bf-41d09cb340aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21822,10 +32910,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:40 GMT"
+ "Tue, 19 May 2020 19:13:28 GMT"
],
"Content-Length": [
- "11523"
+ "11755"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21837,17 +32925,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-13T22:31:31.4866631Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-13T22:31:31.4866631Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.ContainerInstance/containerGroups/yxfw6dp2dkppiazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Storage/storageAccounts/yxfw6dp2dkppiazscripts\",\r\n \"startTime\": \"2020-05-13T22:31:34.6145339Z\",\r\n \"endTime\": \"2020-05-13T22:32:35.1855008Z\",\r\n \"expirationTime\": \"2020-05-14T22:32:35.1855008Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n}",
+ "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-19T19:12:06.8204788Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-19T19:12:06.8204788Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.ContainerInstance/containerGroups/sgj2res7ensgwazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Storage/storageAccounts/sgj2res7ensgwazscripts\",\r\n \"startTime\": \"2020-05-19T19:12:13.2907462Z\",\r\n \"endTime\": \"2020-05-19T19:13:10.5633776Z\",\r\n \"expirationTime\": \"2020-05-20T19:13:10.5633776Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73?api-version=2019-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDM2Y2ZkYTYtMzFkMi00NzI2LThiOWQtZTNmYjBkNmYzYzczP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b?api-version=2019-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMWFkNjJiOGMtMmI1NS00NGQ5LWI2YTEtYTlhOTE1YzgwYjViP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c4028eb-1421-4310-b05d-494fbe923578"
+ "db0132b5-9821-4331-abce-6f1b636f7623"
],
"Accept-Language": [
"en-US"
@@ -21867,7 +32955,7 @@
"no-cache"
],
"x-ms-request-id": [
- "71ad53d4-48e9-4b06-aeb0-7f733938e8be"
+ "538f945a-64ba-462a-bfe7-44464e2e806a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -21876,10 +32964,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "fcbdc7b6-fd95-44cb-a5ea-0d16c6fe58d3"
+ "3542a4ea-e14c-4c08-87dc-1d6a07dde03a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223242Z:fcbdc7b6-fd95-44cb-a5ea-0d16c6fe58d3"
+ "NORTHCENTRALUS:20200519T191329Z:3542a4ea-e14c-4c08-87dc-1d6a07dde03a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21888,10 +32976,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:42 GMT"
+ "Tue, 19 May 2020 19:13:29 GMT"
],
"Content-Length": [
- "11523"
+ "11755"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21903,17 +32991,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-13T22:31:31.4866631Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-13T22:31:31.4866631Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.ContainerInstance/containerGroups/yxfw6dp2dkppiazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Storage/storageAccounts/yxfw6dp2dkppiazscripts\",\r\n \"startTime\": \"2020-05-13T22:31:34.6145339Z\",\r\n \"endTime\": \"2020-05-13T22:32:35.1855008Z\",\r\n \"expirationTime\": \"2020-05-14T22:32:35.1855008Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5732/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-036cfda6-31d2-4726-8b9d-e3fb0d6f3c73\"\r\n}",
+ "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-19T19:12:06.8204788Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-19T19:12:06.8204788Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.ContainerInstance/containerGroups/sgj2res7ensgwazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Storage/storageAccounts/sgj2res7ensgwazscripts\",\r\n \"startTime\": \"2020-05-19T19:12:13.2907462Z\",\r\n \"endTime\": \"2020-05-19T19:13:10.5633776Z\",\r\n \"expirationTime\": \"2020-05-20T19:13:10.5633776Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8995/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-1ad62b8c-2b55-44d9-b6a1-a9a915c80b5b\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps5732?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNTczMj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8995?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODk5NT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19df50b9-34d3-4ed9-9abc-8347882fd009"
+ "72fe3249-19eb-47b0-ba54-98be7112652b"
],
"Accept-Language": [
"en-US"
@@ -21933,7 +33021,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -21942,13 +33030,13 @@
"14999"
],
"x-ms-request-id": [
- "1b49b624-bd59-4287-b6bf-b9abcae2d7be"
+ "13f58782-bf78-4b94-8829-cb9838e4516f"
],
"x-ms-correlation-request-id": [
- "1b49b624-bd59-4287-b6bf-b9abcae2d7be"
+ "13f58782-bf78-4b94-8829-cb9838e4516f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223245Z:1b49b624-bd59-4287-b6bf-b9abcae2d7be"
+ "NORTHCENTRALUS:20200519T191332Z:13f58782-bf78-4b94-8829-cb9838e4516f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21957,7 +33045,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:32:44 GMT"
+ "Tue, 19 May 2020 19:13:32 GMT"
],
"Expires": [
"-1"
@@ -21970,8 +33058,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9UVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -21990,7 +33078,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -21999,13 +33087,13 @@
"11998"
],
"x-ms-request-id": [
- "ecea4d19-d1ee-4231-80ec-781e445566a0"
+ "d2399556-266d-49c8-9726-4f53a9f20221"
],
"x-ms-correlation-request-id": [
- "ecea4d19-d1ee-4231-80ec-781e445566a0"
+ "d2399556-266d-49c8-9726-4f53a9f20221"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223300Z:ecea4d19-d1ee-4231-80ec-781e445566a0"
+ "NORTHCENTRALUS:20200519T191347Z:d2399556-266d-49c8-9726-4f53a9f20221"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22014,7 +33102,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:33:00 GMT"
+ "Tue, 19 May 2020 19:13:46 GMT"
],
"Expires": [
"-1"
@@ -22027,8 +33115,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9UVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -22047,7 +33135,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -22056,13 +33144,13 @@
"11997"
],
"x-ms-request-id": [
- "41d1ded8-fc4b-4e80-a0ab-b98e202c45e7"
+ "a0bd3bab-e574-4f51-88ee-f825c0107ee5"
],
"x-ms-correlation-request-id": [
- "41d1ded8-fc4b-4e80-a0ab-b98e202c45e7"
+ "a0bd3bab-e574-4f51-88ee-f825c0107ee5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223315Z:41d1ded8-fc4b-4e80-a0ab-b98e202c45e7"
+ "NORTHCENTRALUS:20200519T191402Z:a0bd3bab-e574-4f51-88ee-f825c0107ee5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22071,7 +33159,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:33:15 GMT"
+ "Tue, 19 May 2020 19:14:01 GMT"
],
"Expires": [
"-1"
@@ -22084,8 +33172,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9UVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -22104,7 +33192,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -22113,13 +33201,13 @@
"11996"
],
"x-ms-request-id": [
- "924aa402-2d32-4162-b810-6b32f1313f7e"
+ "50e0ce21-8a0b-4898-8304-67b027a5b053"
],
"x-ms-correlation-request-id": [
- "924aa402-2d32-4162-b810-6b32f1313f7e"
+ "50e0ce21-8a0b-4898-8304-67b027a5b053"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223331Z:924aa402-2d32-4162-b810-6b32f1313f7e"
+ "NORTHCENTRALUS:20200519T191417Z:50e0ce21-8a0b-4898-8304-67b027a5b053"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22128,7 +33216,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:33:30 GMT"
+ "Tue, 19 May 2020 19:14:16 GMT"
],
"Expires": [
"-1"
@@ -22141,8 +33229,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9UVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -22161,7 +33249,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -22170,13 +33258,13 @@
"11995"
],
"x-ms-request-id": [
- "6a2d1f02-0e06-427e-9285-7fea8a8f94a4"
+ "11bf868c-515c-4277-8ab9-ad737319df04"
],
"x-ms-correlation-request-id": [
- "6a2d1f02-0e06-427e-9285-7fea8a8f94a4"
+ "11bf868c-515c-4277-8ab9-ad737319df04"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223346Z:6a2d1f02-0e06-427e-9285-7fea8a8f94a4"
+ "NORTHCENTRALUS:20200519T191433Z:11bf868c-515c-4277-8ab9-ad737319df04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22185,7 +33273,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:33:45 GMT"
+ "Tue, 19 May 2020 19:14:32 GMT"
],
"Expires": [
"-1"
@@ -22198,8 +33286,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9UVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -22218,7 +33306,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -22227,13 +33315,13 @@
"11994"
],
"x-ms-request-id": [
- "2883698b-b8a6-4f6d-908a-736d5061b91f"
+ "2189d2bd-1ed9-4ef2-ab60-e9812c512d3e"
],
"x-ms-correlation-request-id": [
- "2883698b-b8a6-4f6d-908a-736d5061b91f"
+ "2189d2bd-1ed9-4ef2-ab60-e9812c512d3e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223401Z:2883698b-b8a6-4f6d-908a-736d5061b91f"
+ "NORTHCENTRALUS:20200519T191448Z:2189d2bd-1ed9-4ef2-ab60-e9812c512d3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22242,7 +33330,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:34:00 GMT"
+ "Tue, 19 May 2020 19:14:47 GMT"
],
"Expires": [
"-1"
@@ -22255,8 +33343,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9UVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -22278,13 +33366,13 @@
"11993"
],
"x-ms-request-id": [
- "9cb8f895-c0fd-4876-a1f1-ab9ef86f301c"
+ "bca1ca0b-23dd-4a2a-a862-e974000f08d1"
],
"x-ms-correlation-request-id": [
- "9cb8f895-c0fd-4876-a1f1-ab9ef86f301c"
+ "bca1ca0b-23dd-4a2a-a862-e974000f08d1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223416Z:9cb8f895-c0fd-4876-a1f1-ab9ef86f301c"
+ "NORTHCENTRALUS:20200519T191503Z:bca1ca0b-23dd-4a2a-a862-e974000f08d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22293,7 +33381,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:34:15 GMT"
+ "Tue, 19 May 2020 19:15:02 GMT"
],
"Expires": [
"-1"
@@ -22309,8 +33397,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU3MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVM016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5OTUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU9UVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -22332,13 +33420,13 @@
"11992"
],
"x-ms-request-id": [
- "b67dfdfa-0861-4cce-854b-3e44db28fd44"
+ "beafca09-6cde-4056-a43c-add8099683fc"
],
"x-ms-correlation-request-id": [
- "b67dfdfa-0861-4cce-854b-3e44db28fd44"
+ "beafca09-6cde-4056-a43c-add8099683fc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223416Z:b67dfdfa-0861-4cce-854b-3e44db28fd44"
+ "NORTHCENTRALUS:20200519T191503Z:beafca09-6cde-4056-a43c-add8099683fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22347,7 +33435,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:34:16 GMT"
+ "Tue, 19 May 2020 19:15:02 GMT"
],
"Expires": [
"-1"
@@ -22365,8 +33453,8 @@
],
"Names": {
"Test-GetDeploymentScriptLog-Cli": [
- "ps5732",
- "ps2204"
+ "ps8995",
+ "ps6348"
]
},
"Variables": {
diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForPowerShell.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForPowerShell.json
index 14f6d2c538ba..c1350aaf723d 100644
--- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForPowerShell.json
+++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptLogGetForPowerShell.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0952f629-2eb9-4fc1-a601-4e46a533b072"
+ "c3bf6e92-f876-4749-9dde-231febabe2ce"
],
"Accept-Language": [
"en-US"
@@ -33,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "8346811a-9bd6-4bd2-835e-57406fb5cdc2"
+ "24e5ec48-9ea9-408c-939f-2dde9e62bbf2"
],
"x-ms-correlation-request-id": [
- "8346811a-9bd6-4bd2-835e-57406fb5cdc2"
+ "24e5ec48-9ea9-408c-939f-2dde9e62bbf2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224208Z:8346811a-9bd6-4bd2-835e-57406fb5cdc2"
+ "NORTHCENTRALUS:20200519T190523Z:24e5ec48-9ea9-408c-939f-2dde9e62bbf2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:07 GMT"
+ "Tue, 19 May 2020 19:05:23 GMT"
],
"Content-Length": [
"98"
@@ -67,13 +67,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "313b2aff-e8d5-4b7e-8017-fa2bfa003680"
+ "2fb39b64-7640-4cd5-9221-e3c66ae6bb12"
],
"Accept-Language": [
"en-US"
@@ -93,16 +93,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-request-id": [
- "7c407267-b421-4bcd-a36c-faf668143c88"
+ "b935a745-8814-4c28-bfad-10515c23f757"
],
"x-ms-correlation-request-id": [
- "7c407267-b421-4bcd-a36c-faf668143c88"
+ "b935a745-8814-4c28-bfad-10515c23f757"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224337Z:7c407267-b421-4bcd-a36c-faf668143c88"
+ "NORTHCENTRALUS:20200519T190743Z:b935a745-8814-4c28-bfad-10515c23f757"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:36 GMT"
+ "Tue, 19 May 2020 19:07:42 GMT"
],
"Content-Length": [
"0"
@@ -127,13 +127,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b15c3a26-bd72-4465-ac8d-a93a907fdea0"
+ "cfec18e3-4919-42c9-8e43-4ba57ad0d8ed"
],
"Accept-Language": [
"en-US"
@@ -162,13 +162,13 @@
"1199"
],
"x-ms-request-id": [
- "6dbeeb4d-6854-4678-89dc-492c81ed8ac3"
+ "190d3059-c8d1-44c4-9f69-1a940bd12bd1"
],
"x-ms-correlation-request-id": [
- "6dbeeb4d-6854-4678-89dc-492c81ed8ac3"
+ "190d3059-c8d1-44c4-9f69-1a940bd12bd1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224210Z:6dbeeb4d-6854-4678-89dc-492c81ed8ac3"
+ "NORTHCENTRALUS:20200519T190524Z:190d3059-c8d1-44c4-9f69-1a940bd12bd1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -177,7 +177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:09 GMT"
+ "Tue, 19 May 2020 19:05:24 GMT"
],
"Content-Length": [
"210"
@@ -192,17 +192,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079\",\r\n \"name\": \"ps2079\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658\",\r\n \"name\": \"ps2658\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/validate?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODYvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710/validate?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMC92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"arguments\": {\r\n \"value\": \"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0433a9eb-36e6-4a31-a818-3b7fcee23568"
+ "0904492e-1e1e-4819-9230-3be6cf0c2fe2"
],
"Accept-Language": [
"en-US"
@@ -231,13 +231,13 @@
"1199"
],
"x-ms-request-id": [
- "3c779911-7fb0-43b8-8e21-7457de12bcd9"
+ "5e3cd495-f9c8-41f0-8418-29af92f33da3"
],
"x-ms-correlation-request-id": [
- "3c779911-7fb0-43b8-8e21-7457de12bcd9"
+ "5e3cd495-f9c8-41f0-8418-29af92f33da3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224211Z:3c779911-7fb0-43b8-8e21-7457de12bcd9"
+ "NORTHCENTRALUS:20200519T190526Z:5e3cd495-f9c8-41f0-8418-29af92f33da3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -246,10 +246,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:10 GMT"
+ "Tue, 19 May 2020 19:05:26 GMT"
],
"Content-Length": [
- "1534"
+ "1532"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,17 +261,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"8fb9f950-fd87-4cbd-a5f7-4f0be307d628\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:42:11.1198352Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"3c779911-7fb0-43b8-8e21-7457de12bcd9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-8fb9f950-fd87-4cbd-a5f7-4f0be307d628\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"db7aab35-e07b-4f91-9870-e48c4ec115d8\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-19T19:05:25.6233294Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"5e3cd495-f9c8-41f0-8418-29af92f33da3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-db7aab35-e07b-4f91-9870-e48c4ec115d8\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"arguments\": {\r\n \"value\": \"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "017e492c-5de3-43db-a301-eaa6dd221943"
+ "9963e549-710f-49e8-9c52-28c8ea863a7e"
],
"Accept-Language": [
"en-US"
@@ -297,19 +297,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operationStatuses/08586121971534093115?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operationStatuses/08586116917582047340?api-version=2019-10-01"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "25809e0f-786c-48ae-987d-5de78d853722"
+ "c8aa5e12-8740-45d5-8f8d-15994a15aaac"
],
"x-ms-correlation-request-id": [
- "25809e0f-786c-48ae-987d-5de78d853722"
+ "c8aa5e12-8740-45d5-8f8d-15994a15aaac"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224213Z:25809e0f-786c-48ae-987d-5de78d853722"
+ "NORTHCENTRALUS:20200519T190528Z:c8aa5e12-8740-45d5-8f8d-15994a15aaac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -318,10 +318,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:13 GMT"
+ "Tue, 19 May 2020 19:05:28 GMT"
],
"Content-Length": [
- "1325"
+ "1323"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,17 +333,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:42:12.7449673Z\",\r\n \"duration\": \"PT0.6766519S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-19T19:05:27.9522842Z\",\r\n \"duration\": \"PT0.6793952S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca4c9dd0-ef48-4e6b-9b42-d404c522a673"
+ "6cd66922-6bc3-4217-90b1-b1fef884f364"
],
"Accept-Language": [
"en-US"
@@ -366,13 +366,13 @@
"11999"
],
"x-ms-request-id": [
- "5d66937c-0194-41c0-8c62-ce0fbdcb7a80"
+ "da392d9c-1dd8-429c-af5e-a25606ddb5ed"
],
"x-ms-correlation-request-id": [
- "5d66937c-0194-41c0-8c62-ce0fbdcb7a80"
+ "da392d9c-1dd8-429c-af5e-a25606ddb5ed"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224213Z:5d66937c-0194-41c0-8c62-ce0fbdcb7a80"
+ "NORTHCENTRALUS:20200519T190528Z:da392d9c-1dd8-429c-af5e-a25606ddb5ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,7 +381,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:13 GMT"
+ "Tue, 19 May 2020 19:05:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -400,13 +400,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "faa64087-9efe-4f28-99a7-da4f92d9a2ee"
+ "2e23d14f-2f73-4108-b373-684af69ffb29"
],
"Accept-Language": [
"en-US"
@@ -429,13 +429,13 @@
"11997"
],
"x-ms-request-id": [
- "2bf22508-4a51-43f9-9353-b8584c48db91"
+ "ff0c2692-8d4b-468f-abeb-a8f8dba6d8ca"
],
"x-ms-correlation-request-id": [
- "2bf22508-4a51-43f9-9353-b8584c48db91"
+ "ff0c2692-8d4b-468f-abeb-a8f8dba6d8ca"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224213Z:2bf22508-4a51-43f9-9353-b8584c48db91"
+ "NORTHCENTRALUS:20200519T190529Z:ff0c2692-8d4b-468f-abeb-a8f8dba6d8ca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:13 GMT"
+ "Tue, 19 May 2020 19:05:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -463,13 +463,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9697672d-2b67-470a-963c-fb3199220f91"
+ "9a8973e3-9fa1-44c0-bbfa-ddf29548ae93"
],
"Accept-Language": [
"en-US"
@@ -492,13 +492,13 @@
"11995"
],
"x-ms-request-id": [
- "4a4d73d7-1d89-46a6-bc11-5d732e3fdc45"
+ "8e835bc4-78f3-49f6-aaef-6088e5c5c57c"
],
"x-ms-correlation-request-id": [
- "4a4d73d7-1d89-46a6-bc11-5d732e3fdc45"
+ "8e835bc4-78f3-49f6-aaef-6088e5c5c57c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224214Z:4a4d73d7-1d89-46a6-bc11-5d732e3fdc45"
+ "NORTHCENTRALUS:20200519T190529Z:8e835bc4-78f3-49f6-aaef-6088e5c5c57c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,7 +507,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:14 GMT"
+ "Tue, 19 May 2020 19:05:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -526,13 +526,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "636dd6eb-e98f-4718-a932-6385047a96e8"
+ "4cbe2bea-c843-415b-a6a3-7ca408fea341"
],
"Accept-Language": [
"en-US"
@@ -555,13 +555,13 @@
"11993"
],
"x-ms-request-id": [
- "d4cdd124-eedf-48fa-8674-62137395d569"
+ "ef2c93fe-9d90-4249-8755-1d5aba2a09c6"
],
"x-ms-correlation-request-id": [
- "d4cdd124-eedf-48fa-8674-62137395d569"
+ "ef2c93fe-9d90-4249-8755-1d5aba2a09c6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224214Z:d4cdd124-eedf-48fa-8674-62137395d569"
+ "NORTHCENTRALUS:20200519T190530Z:ef2c93fe-9d90-4249-8755-1d5aba2a09c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +570,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:14 GMT"
+ "Tue, 19 May 2020 19:05:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -589,13 +589,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ec457dc-5041-42e7-9fc2-4aee10bc43ca"
+ "d439e9ac-9246-4ea2-a6f1-845422216973"
],
"Accept-Language": [
"en-US"
@@ -618,13 +618,13 @@
"11991"
],
"x-ms-request-id": [
- "fa6c54d5-e844-4fbf-87b2-1f854780f0f9"
+ "0845a588-5c96-4f87-b58c-5a732b49622a"
],
"x-ms-correlation-request-id": [
- "fa6c54d5-e844-4fbf-87b2-1f854780f0f9"
+ "0845a588-5c96-4f87-b58c-5a732b49622a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224214Z:fa6c54d5-e844-4fbf-87b2-1f854780f0f9"
+ "NORTHCENTRALUS:20200519T190530Z:0845a588-5c96-4f87-b58c-5a732b49622a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,7 +633,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:14 GMT"
+ "Tue, 19 May 2020 19:05:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -652,13 +652,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1a1dfb3-39ce-42c5-b0fa-50ecefb8fe8d"
+ "9549e943-e5da-43f9-9163-373ca3f528c2"
],
"Accept-Language": [
"en-US"
@@ -681,13 +681,13 @@
"11989"
],
"x-ms-request-id": [
- "1ca65761-0070-46c5-94c0-c407d0aa2642"
+ "ffb0869c-f1e4-4ff2-b25f-c75fd4fcf632"
],
"x-ms-correlation-request-id": [
- "1ca65761-0070-46c5-94c0-c407d0aa2642"
+ "ffb0869c-f1e4-4ff2-b25f-c75fd4fcf632"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224215Z:1ca65761-0070-46c5-94c0-c407d0aa2642"
+ "NORTHCENTRALUS:20200519T190530Z:ffb0869c-f1e4-4ff2-b25f-c75fd4fcf632"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -696,7 +696,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:15 GMT"
+ "Tue, 19 May 2020 19:05:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -715,13 +715,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95d9403e-e200-4091-960a-019894e2fe9a"
+ "a2d666c6-b9e6-4553-ba7d-dba400b66e7c"
],
"Accept-Language": [
"en-US"
@@ -744,13 +744,13 @@
"11987"
],
"x-ms-request-id": [
- "aeb36838-e2ad-4f9e-aed1-765b327a108f"
+ "19509b26-6478-44d5-965b-1fe5641aa4ff"
],
"x-ms-correlation-request-id": [
- "aeb36838-e2ad-4f9e-aed1-765b327a108f"
+ "19509b26-6478-44d5-965b-1fe5641aa4ff"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224215Z:aeb36838-e2ad-4f9e-aed1-765b327a108f"
+ "NORTHCENTRALUS:20200519T190531Z:19509b26-6478-44d5-965b-1fe5641aa4ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -759,7 +759,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:15 GMT"
+ "Tue, 19 May 2020 19:05:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -778,13 +778,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08143e9e-e701-4fe4-98c3-1cac30f0abdf"
+ "3ee8df09-634b-4ef8-b052-17ea757f3f47"
],
"Accept-Language": [
"en-US"
@@ -807,13 +807,13 @@
"11985"
],
"x-ms-request-id": [
- "855be6cb-646e-4b00-ba7a-8c801e709fe0"
+ "e97579ba-b299-433d-8f23-8fd3ca7c4c92"
],
"x-ms-correlation-request-id": [
- "855be6cb-646e-4b00-ba7a-8c801e709fe0"
+ "e97579ba-b299-433d-8f23-8fd3ca7c4c92"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224216Z:855be6cb-646e-4b00-ba7a-8c801e709fe0"
+ "NORTHCENTRALUS:20200519T190531Z:e97579ba-b299-433d-8f23-8fd3ca7c4c92"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -822,7 +822,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:16 GMT"
+ "Tue, 19 May 2020 19:05:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -841,13 +841,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71779ece-025b-41a2-898d-8865cc45e9a0"
+ "cd0ef0e3-8ab3-492b-82ef-75979afeab15"
],
"Accept-Language": [
"en-US"
@@ -870,13 +870,13 @@
"11983"
],
"x-ms-request-id": [
- "cb3641c9-03e9-4da6-9c69-1f1bafd251b3"
+ "6b867529-888c-4dce-ad9c-e8077fce4754"
],
"x-ms-correlation-request-id": [
- "cb3641c9-03e9-4da6-9c69-1f1bafd251b3"
+ "6b867529-888c-4dce-ad9c-e8077fce4754"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224216Z:cb3641c9-03e9-4da6-9c69-1f1bafd251b3"
+ "NORTHCENTRALUS:20200519T190532Z:6b867529-888c-4dce-ad9c-e8077fce4754"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -885,7 +885,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:16 GMT"
+ "Tue, 19 May 2020 19:05:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -904,13 +904,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56baae41-f78e-4241-a5d0-91c648ffed74"
+ "8fc3be2b-9385-48be-8a85-8daa0df9759a"
],
"Accept-Language": [
"en-US"
@@ -933,13 +933,13 @@
"11981"
],
"x-ms-request-id": [
- "04b53be8-0040-4cdf-ad1f-8ca33f535395"
+ "74fbf5ff-07d6-441e-8194-496c56c85ca5"
],
"x-ms-correlation-request-id": [
- "04b53be8-0040-4cdf-ad1f-8ca33f535395"
+ "74fbf5ff-07d6-441e-8194-496c56c85ca5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224216Z:04b53be8-0040-4cdf-ad1f-8ca33f535395"
+ "NORTHCENTRALUS:20200519T190532Z:74fbf5ff-07d6-441e-8194-496c56c85ca5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -948,7 +948,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:16 GMT"
+ "Tue, 19 May 2020 19:05:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -957,23 +957,23 @@
"-1"
],
"Content-Length": [
- "12"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.376037Z\",\r\n \"duration\": \"PT3.4947361S\",\r\n \"trackingId\": \"a5c61993-f3ca-4a19-9cc6-0f4d575d70b9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7572e21c-f325-4172-b92b-bac220869330"
+ "6d1e9617-4404-4916-91f7-189c0da53c4d"
],
"Accept-Language": [
"en-US"
@@ -996,13 +996,13 @@
"11979"
],
"x-ms-request-id": [
- "f80768d8-87a8-4fae-8e83-50662254b648"
+ "e7408be1-d57b-4fab-9278-28a32174e454"
],
"x-ms-correlation-request-id": [
- "f80768d8-87a8-4fae-8e83-50662254b648"
+ "e7408be1-d57b-4fab-9278-28a32174e454"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224217Z:f80768d8-87a8-4fae-8e83-50662254b648"
+ "NORTHCENTRALUS:20200519T190532Z:e7408be1-d57b-4fab-9278-28a32174e454"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1011,7 +1011,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:17 GMT"
+ "Tue, 19 May 2020 19:05:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1020,23 +1020,23 @@
"-1"
],
"Content-Length": [
- "12"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62e15745-dbbc-4998-866c-fd9f72611b3e"
+ "59c1e707-28ff-4d12-9cfd-9758d9977c39"
],
"Accept-Language": [
"en-US"
@@ -1059,13 +1059,13 @@
"11977"
],
"x-ms-request-id": [
- "26a9f03d-b5c2-49e3-99eb-918dbe70c02f"
+ "5638671f-e95f-4a79-b6f8-f187e8d04ad3"
],
"x-ms-correlation-request-id": [
- "26a9f03d-b5c2-49e3-99eb-918dbe70c02f"
+ "5638671f-e95f-4a79-b6f8-f187e8d04ad3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224217Z:26a9f03d-b5c2-49e3-99eb-918dbe70c02f"
+ "NORTHCENTRALUS:20200519T190533Z:5638671f-e95f-4a79-b6f8-f187e8d04ad3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1074,7 +1074,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:17 GMT"
+ "Tue, 19 May 2020 19:05:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1083,23 +1083,23 @@
"-1"
],
"Content-Length": [
- "12"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e6502829-dd62-4832-a937-558eb4d16495"
+ "d33ac0a9-8850-420a-9494-7a62a2bd504e"
],
"Accept-Language": [
"en-US"
@@ -1122,13 +1122,13 @@
"11975"
],
"x-ms-request-id": [
- "aaec2f0f-aff1-4969-9426-ad2be449028d"
+ "505949a3-59ad-4f9f-9042-ef581e663370"
],
"x-ms-correlation-request-id": [
- "aaec2f0f-aff1-4969-9426-ad2be449028d"
+ "505949a3-59ad-4f9f-9042-ef581e663370"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224217Z:aaec2f0f-aff1-4969-9426-ad2be449028d"
+ "NORTHCENTRALUS:20200519T190533Z:505949a3-59ad-4f9f-9042-ef581e663370"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1137,7 +1137,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:17 GMT"
+ "Tue, 19 May 2020 19:05:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1146,23 +1146,23 @@
"-1"
],
"Content-Length": [
- "12"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb77dd2-6277-4142-9ad9-588ed90a037f"
+ "6bce2a58-0acd-4af2-84c7-c831d8f89351"
],
"Accept-Language": [
"en-US"
@@ -1185,13 +1185,13 @@
"11973"
],
"x-ms-request-id": [
- "40a6a7ec-050b-4a72-b8a9-933bec6e9f04"
+ "217b35e9-f0aa-44ab-a42e-7bc0d3b3525f"
],
"x-ms-correlation-request-id": [
- "40a6a7ec-050b-4a72-b8a9-933bec6e9f04"
+ "217b35e9-f0aa-44ab-a42e-7bc0d3b3525f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224218Z:40a6a7ec-050b-4a72-b8a9-933bec6e9f04"
+ "NORTHCENTRALUS:20200519T190534Z:217b35e9-f0aa-44ab-a42e-7bc0d3b3525f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1200,7 +1200,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:18 GMT"
+ "Tue, 19 May 2020 19:05:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1209,23 +1209,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.1481813Z\",\r\n \"duration\": \"PT4.2107003S\",\r\n \"trackingId\": \"5c4ca32c-ba5a-412c-abde-994b84578ba5\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32800dd8-19b9-432f-aeee-24697d6db529"
+ "fdae21f5-e103-4161-a0e9-bb8fbac5e055"
],
"Accept-Language": [
"en-US"
@@ -1248,13 +1248,13 @@
"11971"
],
"x-ms-request-id": [
- "60dae280-f29e-4b5c-a1cd-12baf1b1ee07"
+ "898943b9-e584-4f7a-ac1f-2a76cf20751e"
],
"x-ms-correlation-request-id": [
- "60dae280-f29e-4b5c-a1cd-12baf1b1ee07"
+ "898943b9-e584-4f7a-ac1f-2a76cf20751e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224218Z:60dae280-f29e-4b5c-a1cd-12baf1b1ee07"
+ "NORTHCENTRALUS:20200519T190534Z:898943b9-e584-4f7a-ac1f-2a76cf20751e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1263,7 +1263,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:18 GMT"
+ "Tue, 19 May 2020 19:05:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1272,23 +1272,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.5679829Z\",\r\n \"duration\": \"PT4.6305019S\",\r\n \"trackingId\": \"e3c964be-75b5-4af5-a729-048a5191c335\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13be2836-3225-4320-a690-053183a3f2b9"
+ "5de9d55f-4cf0-46c7-9399-d8de02a6dacc"
],
"Accept-Language": [
"en-US"
@@ -1311,13 +1311,13 @@
"11969"
],
"x-ms-request-id": [
- "a44172fc-8933-478f-8aae-829a1d6d6291"
+ "e6bcd09b-9b04-4de3-a426-ae98733fb8a3"
],
"x-ms-correlation-request-id": [
- "a44172fc-8933-478f-8aae-829a1d6d6291"
+ "e6bcd09b-9b04-4de3-a426-ae98733fb8a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224219Z:a44172fc-8933-478f-8aae-829a1d6d6291"
+ "NORTHCENTRALUS:20200519T190535Z:e6bcd09b-9b04-4de3-a426-ae98733fb8a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1326,7 +1326,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:19 GMT"
+ "Tue, 19 May 2020 19:05:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1335,23 +1335,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.9648184Z\",\r\n \"duration\": \"PT5.0273374S\",\r\n \"trackingId\": \"2d38d8cb-6fbe-4c22-a182-dc3bb0ab8bec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ceaf9e0-5c15-4e4f-bc68-87dfe8517110"
+ "33e31a5d-4625-4b03-abae-f3d586ce6002"
],
"Accept-Language": [
"en-US"
@@ -1374,13 +1374,13 @@
"11967"
],
"x-ms-request-id": [
- "80d49f75-b87f-476e-bc51-652ef6e8dd97"
+ "44898681-5de2-4435-bb42-ba1df06d424a"
],
"x-ms-correlation-request-id": [
- "80d49f75-b87f-476e-bc51-652ef6e8dd97"
+ "44898681-5de2-4435-bb42-ba1df06d424a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224219Z:80d49f75-b87f-476e-bc51-652ef6e8dd97"
+ "NORTHCENTRALUS:20200519T190535Z:44898681-5de2-4435-bb42-ba1df06d424a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1389,7 +1389,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:19 GMT"
+ "Tue, 19 May 2020 19:05:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1398,23 +1398,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.9648184Z\",\r\n \"duration\": \"PT5.0273374S\",\r\n \"trackingId\": \"2d38d8cb-6fbe-4c22-a182-dc3bb0ab8bec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d40a5da-f763-4329-b5d0-dc2704220bb9"
+ "6f48652b-8bf8-457f-a326-e47bc56dc236"
],
"Accept-Language": [
"en-US"
@@ -1437,13 +1437,13 @@
"11965"
],
"x-ms-request-id": [
- "2aaa1e4e-07ad-41fe-bbdf-ed6d94ec974a"
+ "932c079c-0858-4421-925e-f5670f1a88b8"
],
"x-ms-correlation-request-id": [
- "2aaa1e4e-07ad-41fe-bbdf-ed6d94ec974a"
+ "932c079c-0858-4421-925e-f5670f1a88b8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224219Z:2aaa1e4e-07ad-41fe-bbdf-ed6d94ec974a"
+ "NORTHCENTRALUS:20200519T190536Z:932c079c-0858-4421-925e-f5670f1a88b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1452,7 +1452,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:19 GMT"
+ "Tue, 19 May 2020 19:05:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1461,23 +1461,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.9648184Z\",\r\n \"duration\": \"PT5.0273374S\",\r\n \"trackingId\": \"2d38d8cb-6fbe-4c22-a182-dc3bb0ab8bec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7310768Z\",\r\n \"duration\": \"PT3.8497759S\",\r\n \"trackingId\": \"1c9c353c-e707-452f-bcd2-dec873f0fd80\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b617819-aa10-45cb-a5ab-65314778dd6e"
+ "1cc02ed9-7f45-4950-937a-38ba77dc0cff"
],
"Accept-Language": [
"en-US"
@@ -1500,13 +1500,13 @@
"11963"
],
"x-ms-request-id": [
- "2b8ec60f-9cf4-410d-ac52-7b2b6c6263bd"
+ "1dcea879-16a9-4690-ba41-4be9d2ecdcdb"
],
"x-ms-correlation-request-id": [
- "2b8ec60f-9cf4-410d-ac52-7b2b6c6263bd"
+ "1dcea879-16a9-4690-ba41-4be9d2ecdcdb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224220Z:2b8ec60f-9cf4-410d-ac52-7b2b6c6263bd"
+ "NORTHCENTRALUS:20200519T190536Z:1dcea879-16a9-4690-ba41-4be9d2ecdcdb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1515,7 +1515,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:20 GMT"
+ "Tue, 19 May 2020 19:05:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1524,23 +1524,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.9648184Z\",\r\n \"duration\": \"PT5.0273374S\",\r\n \"trackingId\": \"2d38d8cb-6fbe-4c22-a182-dc3bb0ab8bec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d9a3ef4-8258-49d1-9a06-b6f36c2af7ec"
+ "4a729ba8-31c2-4280-a76c-448f30777fac"
],
"Accept-Language": [
"en-US"
@@ -1563,13 +1563,13 @@
"11961"
],
"x-ms-request-id": [
- "baa5fbb6-4ff0-482e-b738-423f35597b25"
+ "2ad86fd6-4776-41a5-a17e-9a0f2f5eee08"
],
"x-ms-correlation-request-id": [
- "baa5fbb6-4ff0-482e-b738-423f35597b25"
+ "2ad86fd6-4776-41a5-a17e-9a0f2f5eee08"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224220Z:baa5fbb6-4ff0-482e-b738-423f35597b25"
+ "NORTHCENTRALUS:20200519T190536Z:2ad86fd6-4776-41a5-a17e-9a0f2f5eee08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1578,7 +1578,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:20 GMT"
+ "Tue, 19 May 2020 19:05:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1587,23 +1587,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.9648184Z\",\r\n \"duration\": \"PT5.0273374S\",\r\n \"trackingId\": \"2d38d8cb-6fbe-4c22-a182-dc3bb0ab8bec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "528b2d08-3328-4f63-8170-a4c2572095b6"
+ "8b12c2b8-c118-4133-b25d-0fc16a073432"
],
"Accept-Language": [
"en-US"
@@ -1626,13 +1626,13 @@
"11959"
],
"x-ms-request-id": [
- "a5fe8a3e-1f66-4de0-97ae-665b42a10967"
+ "bfda2907-62a7-4b2c-8ae4-b233679a16b3"
],
"x-ms-correlation-request-id": [
- "a5fe8a3e-1f66-4de0-97ae-665b42a10967"
+ "bfda2907-62a7-4b2c-8ae4-b233679a16b3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224221Z:a5fe8a3e-1f66-4de0-97ae-665b42a10967"
+ "NORTHCENTRALUS:20200519T190537Z:bfda2907-62a7-4b2c-8ae4-b233679a16b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1641,7 +1641,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:21 GMT"
+ "Tue, 19 May 2020 19:05:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1650,23 +1650,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.9648184Z\",\r\n \"duration\": \"PT5.0273374S\",\r\n \"trackingId\": \"2d38d8cb-6fbe-4c22-a182-dc3bb0ab8bec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a9492a9-e96b-46ea-a7f4-f4082c2f814c"
+ "a3394c0a-cb77-45cc-b2fa-56ed4f5d53c1"
],
"Accept-Language": [
"en-US"
@@ -1689,13 +1689,13 @@
"11957"
],
"x-ms-request-id": [
- "e4d8f038-d400-4234-82dc-adc06ab55496"
+ "17eb94d1-7913-4642-af32-376ef4403455"
],
"x-ms-correlation-request-id": [
- "e4d8f038-d400-4234-82dc-adc06ab55496"
+ "17eb94d1-7913-4642-af32-376ef4403455"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224221Z:e4d8f038-d400-4234-82dc-adc06ab55496"
+ "NORTHCENTRALUS:20200519T190537Z:17eb94d1-7913-4642-af32-376ef4403455"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1704,7 +1704,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:21 GMT"
+ "Tue, 19 May 2020 19:05:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1713,23 +1713,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.9648184Z\",\r\n \"duration\": \"PT5.0273374S\",\r\n \"trackingId\": \"2d38d8cb-6fbe-4c22-a182-dc3bb0ab8bec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5de63b84-9031-45c6-88e9-fd7606b37413"
+ "7ed08ab7-268b-4904-89fe-75cabf915dd3"
],
"Accept-Language": [
"en-US"
@@ -1752,13 +1752,13 @@
"11955"
],
"x-ms-request-id": [
- "b7b1d5d2-75df-4a3b-83b1-9ca84a852b69"
+ "e30131aa-875f-4fd4-a42f-732708829f5a"
],
"x-ms-correlation-request-id": [
- "b7b1d5d2-75df-4a3b-83b1-9ca84a852b69"
+ "e30131aa-875f-4fd4-a42f-732708829f5a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224221Z:b7b1d5d2-75df-4a3b-83b1-9ca84a852b69"
+ "NORTHCENTRALUS:20200519T190538Z:e30131aa-875f-4fd4-a42f-732708829f5a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1767,7 +1767,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:21 GMT"
+ "Tue, 19 May 2020 19:05:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1776,23 +1776,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc1dbc84-6734-4ba9-b72d-09c1ad5ba475"
+ "09bec74c-d2ac-4c53-802d-32bc3347442b"
],
"Accept-Language": [
"en-US"
@@ -1815,13 +1815,13 @@
"11953"
],
"x-ms-request-id": [
- "19c9d2cf-09c3-41db-852d-f05d8a8309f2"
+ "5c96eae1-a1a1-4b6a-9ea6-803e65a15dad"
],
"x-ms-correlation-request-id": [
- "19c9d2cf-09c3-41db-852d-f05d8a8309f2"
+ "5c96eae1-a1a1-4b6a-9ea6-803e65a15dad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224222Z:19c9d2cf-09c3-41db-852d-f05d8a8309f2"
+ "NORTHCENTRALUS:20200519T190538Z:5c96eae1-a1a1-4b6a-9ea6-803e65a15dad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:22 GMT"
+ "Tue, 19 May 2020 19:05:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1839,23 +1839,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d20fc24-2b54-422b-823f-d7d6005619af"
+ "09637eed-ad7c-4eb4-9f18-dd72b4200ed1"
],
"Accept-Language": [
"en-US"
@@ -1878,13 +1878,13 @@
"11951"
],
"x-ms-request-id": [
- "26ce3b94-b8f8-4876-97d5-f72ddcba9b02"
+ "d241e58d-873a-473f-bbef-d74d308d37d0"
],
"x-ms-correlation-request-id": [
- "26ce3b94-b8f8-4876-97d5-f72ddcba9b02"
+ "d241e58d-873a-473f-bbef-d74d308d37d0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224222Z:26ce3b94-b8f8-4876-97d5-f72ddcba9b02"
+ "NORTHCENTRALUS:20200519T190539Z:d241e58d-873a-473f-bbef-d74d308d37d0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1893,7 +1893,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:22 GMT"
+ "Tue, 19 May 2020 19:05:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1902,23 +1902,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37cbffcf-f1c5-430b-9f2d-b0a36c635983"
+ "acaa64f0-b3b9-48ee-a516-4b7367eec76a"
],
"Accept-Language": [
"en-US"
@@ -1941,13 +1941,13 @@
"11949"
],
"x-ms-request-id": [
- "208390a1-3227-4d26-ba7c-39a20e9a0439"
+ "069885ce-3fae-45c6-b2a9-f49fc468e252"
],
"x-ms-correlation-request-id": [
- "208390a1-3227-4d26-ba7c-39a20e9a0439"
+ "069885ce-3fae-45c6-b2a9-f49fc468e252"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224223Z:208390a1-3227-4d26-ba7c-39a20e9a0439"
+ "NORTHCENTRALUS:20200519T190539Z:069885ce-3fae-45c6-b2a9-f49fc468e252"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1956,7 +1956,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:23 GMT"
+ "Tue, 19 May 2020 19:05:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1965,23 +1965,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "153f96cd-49c3-4a3c-872b-df162fb484dd"
+ "602d5935-1989-4d66-a9fe-90015235c34b"
],
"Accept-Language": [
"en-US"
@@ -2004,13 +2004,13 @@
"11947"
],
"x-ms-request-id": [
- "36a3c0c4-2b73-4d1d-8e1e-3fad509ca396"
+ "2aa97ec7-c5bc-46c8-8b45-c3e17a9fcd69"
],
"x-ms-correlation-request-id": [
- "36a3c0c4-2b73-4d1d-8e1e-3fad509ca396"
+ "2aa97ec7-c5bc-46c8-8b45-c3e17a9fcd69"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224223Z:36a3c0c4-2b73-4d1d-8e1e-3fad509ca396"
+ "NORTHCENTRALUS:20200519T190540Z:2aa97ec7-c5bc-46c8-8b45-c3e17a9fcd69"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2019,7 +2019,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:23 GMT"
+ "Tue, 19 May 2020 19:05:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2028,23 +2028,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93dc28dd-cea9-42b8-a72e-9666af993594"
+ "4b45c37b-bec0-48e0-b051-6298a028ff5f"
],
"Accept-Language": [
"en-US"
@@ -2067,13 +2067,13 @@
"11945"
],
"x-ms-request-id": [
- "a1ffa1af-bf06-4b7b-8d49-a7e3d952319b"
+ "0f41630a-e7d0-4926-9933-cb5383fd2abe"
],
"x-ms-correlation-request-id": [
- "a1ffa1af-bf06-4b7b-8d49-a7e3d952319b"
+ "0f41630a-e7d0-4926-9933-cb5383fd2abe"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224224Z:a1ffa1af-bf06-4b7b-8d49-a7e3d952319b"
+ "NORTHCENTRALUS:20200519T190540Z:0f41630a-e7d0-4926-9933-cb5383fd2abe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2082,7 +2082,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:23 GMT"
+ "Tue, 19 May 2020 19:05:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2091,23 +2091,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3273729Z\",\r\n \"duration\": \"PT7.446072S\",\r\n \"trackingId\": \"ef47473c-c569-4b06-b5d0-9e76ad62de9d\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f0ea5b9-e395-4691-920b-8d9f689690f3"
+ "a29f3ea3-6f77-48a8-9b20-9fb17425db46"
],
"Accept-Language": [
"en-US"
@@ -2130,13 +2130,13 @@
"11943"
],
"x-ms-request-id": [
- "4c481a26-3447-4c53-adde-53d3b0e75513"
+ "4f08aef8-26d0-4a5c-8656-d4636488ea48"
],
"x-ms-correlation-request-id": [
- "4c481a26-3447-4c53-adde-53d3b0e75513"
+ "4f08aef8-26d0-4a5c-8656-d4636488ea48"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224224Z:4c481a26-3447-4c53-adde-53d3b0e75513"
+ "NORTHCENTRALUS:20200519T190540Z:4f08aef8-26d0-4a5c-8656-d4636488ea48"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2145,7 +2145,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:24 GMT"
+ "Tue, 19 May 2020 19:05:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2160,17 +2160,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fdead4eb-1df3-402f-b77f-629343812893"
+ "cbc2c1cb-e3f9-4005-9708-2447fc61dedf"
],
"Accept-Language": [
"en-US"
@@ -2193,13 +2193,13 @@
"11941"
],
"x-ms-request-id": [
- "e846967b-4030-4b1f-8d13-54341a3f7eb7"
+ "22a2a701-1465-46c8-b365-7274d2c7bacf"
],
"x-ms-correlation-request-id": [
- "e846967b-4030-4b1f-8d13-54341a3f7eb7"
+ "22a2a701-1465-46c8-b365-7274d2c7bacf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224224Z:e846967b-4030-4b1f-8d13-54341a3f7eb7"
+ "NORTHCENTRALUS:20200519T190541Z:22a2a701-1465-46c8-b365-7274d2c7bacf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2208,7 +2208,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:24 GMT"
+ "Tue, 19 May 2020 19:05:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2223,17 +2223,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab9a1d03-fbb4-48e1-9c74-331cc2c35962"
+ "a7c3da10-eeff-4031-81c7-1966a5a444fc"
],
"Accept-Language": [
"en-US"
@@ -2256,13 +2256,13 @@
"11939"
],
"x-ms-request-id": [
- "c6aec11d-e763-4cbc-bc0e-581961f8c134"
+ "9d853046-1e73-476b-a556-f85a2b46cbf3"
],
"x-ms-correlation-request-id": [
- "c6aec11d-e763-4cbc-bc0e-581961f8c134"
+ "9d853046-1e73-476b-a556-f85a2b46cbf3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224225Z:c6aec11d-e763-4cbc-bc0e-581961f8c134"
+ "NORTHCENTRALUS:20200519T190541Z:9d853046-1e73-476b-a556-f85a2b46cbf3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2271,7 +2271,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:25 GMT"
+ "Tue, 19 May 2020 19:05:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2286,17 +2286,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "afb32e8b-ade6-4018-a98e-adcea127b491"
+ "9c493964-0b92-4331-afb0-70850c23d779"
],
"Accept-Language": [
"en-US"
@@ -2319,13 +2319,13 @@
"11937"
],
"x-ms-request-id": [
- "d3179aba-53c1-44d2-a8f9-1b060727daf9"
+ "39f950d5-66d0-41cc-8c86-737feafc5aa8"
],
"x-ms-correlation-request-id": [
- "d3179aba-53c1-44d2-a8f9-1b060727daf9"
+ "39f950d5-66d0-41cc-8c86-737feafc5aa8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224225Z:d3179aba-53c1-44d2-a8f9-1b060727daf9"
+ "NORTHCENTRALUS:20200519T190542Z:39f950d5-66d0-41cc-8c86-737feafc5aa8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2334,7 +2334,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:25 GMT"
+ "Tue, 19 May 2020 19:05:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2349,17 +2349,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb33c804-0933-497d-b18d-1205ece8dcc2"
+ "d32c11cb-7216-4b41-ad4a-9ed6a9424d02"
],
"Accept-Language": [
"en-US"
@@ -2382,13 +2382,13 @@
"11935"
],
"x-ms-request-id": [
- "c8ab721f-f5b6-48ba-8752-ae23376d7808"
+ "ded3d972-7d9c-4804-81c1-a30bd82015c7"
],
"x-ms-correlation-request-id": [
- "c8ab721f-f5b6-48ba-8752-ae23376d7808"
+ "ded3d972-7d9c-4804-81c1-a30bd82015c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224226Z:c8ab721f-f5b6-48ba-8752-ae23376d7808"
+ "NORTHCENTRALUS:20200519T190542Z:ded3d972-7d9c-4804-81c1-a30bd82015c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2397,7 +2397,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:25 GMT"
+ "Tue, 19 May 2020 19:05:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2412,17 +2412,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.7889762Z\",\r\n \"duration\": \"PT7.8514952S\",\r\n \"trackingId\": \"92d1edf1-5bcb-444b-aec9-887f667bd736\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f19af8cd-d83a-4d8a-a70f-9ab3d55156f6"
+ "162fed88-7566-4143-be43-00092dfda54c"
],
"Accept-Language": [
"en-US"
@@ -2445,13 +2445,13 @@
"11933"
],
"x-ms-request-id": [
- "07e752a1-eebc-4ba4-bf42-f21e88399e60"
+ "83777400-e2c9-4c65-800c-d9249175e345"
],
"x-ms-correlation-request-id": [
- "07e752a1-eebc-4ba4-bf42-f21e88399e60"
+ "83777400-e2c9-4c65-800c-d9249175e345"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224226Z:07e752a1-eebc-4ba4-bf42-f21e88399e60"
+ "NORTHCENTRALUS:20200519T190543Z:83777400-e2c9-4c65-800c-d9249175e345"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2460,7 +2460,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:26 GMT"
+ "Tue, 19 May 2020 19:05:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2469,23 +2469,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f583594-c310-4a38-bf6b-26711b9ebf5f"
+ "2ef45450-889d-4c4d-a534-2ca9ea918e94"
],
"Accept-Language": [
"en-US"
@@ -2508,13 +2508,13 @@
"11931"
],
"x-ms-request-id": [
- "5a117c6d-3e93-4458-850c-ecee29ff5089"
+ "fd5ac044-f64a-4ff6-98d1-0966cc7b950c"
],
"x-ms-correlation-request-id": [
- "5a117c6d-3e93-4458-850c-ecee29ff5089"
+ "fd5ac044-f64a-4ff6-98d1-0966cc7b950c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224227Z:5a117c6d-3e93-4458-850c-ecee29ff5089"
+ "NORTHCENTRALUS:20200519T190543Z:fd5ac044-f64a-4ff6-98d1-0966cc7b950c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2523,7 +2523,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:26 GMT"
+ "Tue, 19 May 2020 19:05:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2532,23 +2532,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82c61965-3f3d-4f0b-aab7-e5b2950472bb"
+ "dcca7ded-b800-430a-8f25-91780581ac24"
],
"Accept-Language": [
"en-US"
@@ -2571,13 +2571,13 @@
"11929"
],
"x-ms-request-id": [
- "d8c8ed8a-fc4d-49d6-9384-f9be13b850c7"
+ "aa9299fc-40b6-4d56-9684-62e1872de0b7"
],
"x-ms-correlation-request-id": [
- "d8c8ed8a-fc4d-49d6-9384-f9be13b850c7"
+ "aa9299fc-40b6-4d56-9684-62e1872de0b7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224227Z:d8c8ed8a-fc4d-49d6-9384-f9be13b850c7"
+ "NORTHCENTRALUS:20200519T190544Z:aa9299fc-40b6-4d56-9684-62e1872de0b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2586,7 +2586,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:27 GMT"
+ "Tue, 19 May 2020 19:05:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2595,23 +2595,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fa2ae661-8061-44e3-b20d-56d8343ce1b3"
+ "492ce7c6-562d-4521-b9cc-69d0fddfa645"
],
"Accept-Language": [
"en-US"
@@ -2634,13 +2634,13 @@
"11927"
],
"x-ms-request-id": [
- "dae71866-fccb-403b-b93c-48e37d6a6d38"
+ "b6b99e07-03f7-4d7b-a7fc-386628d4f523"
],
"x-ms-correlation-request-id": [
- "dae71866-fccb-403b-b93c-48e37d6a6d38"
+ "b6b99e07-03f7-4d7b-a7fc-386628d4f523"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224227Z:dae71866-fccb-403b-b93c-48e37d6a6d38"
+ "NORTHCENTRALUS:20200519T190544Z:b6b99e07-03f7-4d7b-a7fc-386628d4f523"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2649,7 +2649,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:27 GMT"
+ "Tue, 19 May 2020 19:05:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2658,23 +2658,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.5006591Z\",\r\n \"duration\": \"PT11.6193582S\",\r\n \"trackingId\": \"6fdacefe-0914-42f0-b8d5-6355b1993afd\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d4ca4ad-98bf-4314-af53-e979128902d4"
+ "1c490ae4-0d05-4149-9e92-51ce26fc8df8"
],
"Accept-Language": [
"en-US"
@@ -2697,13 +2697,13 @@
"11925"
],
"x-ms-request-id": [
- "4ec0eca5-04fe-4f0e-b1d3-1c3d834e4680"
+ "a74939c7-f122-494a-9bf2-4c1b27932f76"
],
"x-ms-correlation-request-id": [
- "4ec0eca5-04fe-4f0e-b1d3-1c3d834e4680"
+ "a74939c7-f122-494a-9bf2-4c1b27932f76"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224228Z:4ec0eca5-04fe-4f0e-b1d3-1c3d834e4680"
+ "NORTHCENTRALUS:20200519T190545Z:a74939c7-f122-494a-9bf2-4c1b27932f76"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2712,7 +2712,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:27 GMT"
+ "Tue, 19 May 2020 19:05:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2721,23 +2721,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5eaeadba-7b25-4aae-ae35-fbb9268a8912"
+ "2d2d52ef-d5c3-4cbe-82b7-1827200557c2"
],
"Accept-Language": [
"en-US"
@@ -2760,13 +2760,13 @@
"11923"
],
"x-ms-request-id": [
- "9ed3e1d5-0160-4432-9502-32a42011b614"
+ "8bce7fd5-5db2-43a6-b76f-437e65a93f7a"
],
"x-ms-correlation-request-id": [
- "9ed3e1d5-0160-4432-9502-32a42011b614"
+ "8bce7fd5-5db2-43a6-b76f-437e65a93f7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224228Z:9ed3e1d5-0160-4432-9502-32a42011b614"
+ "NORTHCENTRALUS:20200519T190545Z:8bce7fd5-5db2-43a6-b76f-437e65a93f7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2775,7 +2775,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:28 GMT"
+ "Tue, 19 May 2020 19:05:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2784,23 +2784,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "652d10cb-d61a-4a7b-926b-72c4e0586f91"
+ "a466649e-decc-4998-b94d-259ece3a2832"
],
"Accept-Language": [
"en-US"
@@ -2823,13 +2823,13 @@
"11921"
],
"x-ms-request-id": [
- "55f1962c-6fd0-447d-a523-1199bbba1fed"
+ "297b386f-8579-471a-8434-2470a334fb9c"
],
"x-ms-correlation-request-id": [
- "55f1962c-6fd0-447d-a523-1199bbba1fed"
+ "297b386f-8579-471a-8434-2470a334fb9c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224229Z:55f1962c-6fd0-447d-a523-1199bbba1fed"
+ "NORTHCENTRALUS:20200519T190545Z:297b386f-8579-471a-8434-2470a334fb9c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2838,7 +2838,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:28 GMT"
+ "Tue, 19 May 2020 19:05:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2847,23 +2847,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "901202a7-6f01-4934-87ab-5121402123a1"
+ "a6766b56-0cbe-46f0-a243-3efbb84b731b"
],
"Accept-Language": [
"en-US"
@@ -2886,13 +2886,13 @@
"11919"
],
"x-ms-request-id": [
- "b659bdb5-2d23-4f8f-89b4-353f623b3f23"
+ "e7d63ccd-92cf-4563-a8c9-341881e81e68"
],
"x-ms-correlation-request-id": [
- "b659bdb5-2d23-4f8f-89b4-353f623b3f23"
+ "e7d63ccd-92cf-4563-a8c9-341881e81e68"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224229Z:b659bdb5-2d23-4f8f-89b4-353f623b3f23"
+ "NORTHCENTRALUS:20200519T190546Z:e7d63ccd-92cf-4563-a8c9-341881e81e68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2901,7 +2901,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:29 GMT"
+ "Tue, 19 May 2020 19:05:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2910,23 +2910,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a636cdc2-2f1b-4ec8-b15d-70c5e471d34d"
+ "08b2ea0e-14a0-420d-b883-c635f49757dd"
],
"Accept-Language": [
"en-US"
@@ -2949,13 +2949,13 @@
"11917"
],
"x-ms-request-id": [
- "eaf734ba-2d9d-4c5d-a401-e07b99a158c8"
+ "b373e3d9-7cb5-48e9-8c7b-73296d1caad0"
],
"x-ms-correlation-request-id": [
- "eaf734ba-2d9d-4c5d-a401-e07b99a158c8"
+ "b373e3d9-7cb5-48e9-8c7b-73296d1caad0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224229Z:eaf734ba-2d9d-4c5d-a401-e07b99a158c8"
+ "NORTHCENTRALUS:20200519T190546Z:b373e3d9-7cb5-48e9-8c7b-73296d1caad0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2964,7 +2964,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:29 GMT"
+ "Tue, 19 May 2020 19:05:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2973,23 +2973,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52f5d5cb-5062-406f-8dd6-b6899db1bb86"
+ "cdc9e350-8e90-4bca-b1c4-3eb1a6c0fab5"
],
"Accept-Language": [
"en-US"
@@ -3012,13 +3012,13 @@
"11915"
],
"x-ms-request-id": [
- "50409b42-6aa6-426b-be6e-6f04e26ee3d7"
+ "840ad8ea-a06e-48ea-8130-78ec806e4896"
],
"x-ms-correlation-request-id": [
- "50409b42-6aa6-426b-be6e-6f04e26ee3d7"
+ "840ad8ea-a06e-48ea-8130-78ec806e4896"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224230Z:50409b42-6aa6-426b-be6e-6f04e26ee3d7"
+ "NORTHCENTRALUS:20200519T190547Z:840ad8ea-a06e-48ea-8130-78ec806e4896"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3027,7 +3027,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:29 GMT"
+ "Tue, 19 May 2020 19:05:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3036,23 +3036,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:26.0567464Z\",\r\n \"duration\": \"PT12.1192654S\",\r\n \"trackingId\": \"a0c999c0-6df4-40ab-a2af-a9275ddc9271\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "656c2526-f1fc-41c4-aae5-ddca9c556f9c"
+ "2c5e239a-8811-4a49-beec-bf800ebab39c"
],
"Accept-Language": [
"en-US"
@@ -3075,13 +3075,13 @@
"11913"
],
"x-ms-request-id": [
- "3b3670d2-fd3c-46e6-860d-d5b39829ab09"
+ "3c43860d-afe9-404a-ace5-cf6ecf3d79c3"
],
"x-ms-correlation-request-id": [
- "3b3670d2-fd3c-46e6-860d-d5b39829ab09"
+ "3c43860d-afe9-404a-ace5-cf6ecf3d79c3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224230Z:3b3670d2-fd3c-46e6-860d-d5b39829ab09"
+ "NORTHCENTRALUS:20200519T190547Z:3c43860d-afe9-404a-ace5-cf6ecf3d79c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3090,7 +3090,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:30 GMT"
+ "Tue, 19 May 2020 19:05:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3099,23 +3099,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8b7d1c8-aec2-4a7c-a377-0fa3cb33f894"
+ "b17b0e20-d62f-4f9c-b898-882fd2c63f06"
],
"Accept-Language": [
"en-US"
@@ -3138,13 +3138,13 @@
"11911"
],
"x-ms-request-id": [
- "40f91aac-fe85-4dd6-a71a-f1973e780eff"
+ "46bf2669-4f69-4931-b2d1-2228ea75ab46"
],
"x-ms-correlation-request-id": [
- "40f91aac-fe85-4dd6-a71a-f1973e780eff"
+ "46bf2669-4f69-4931-b2d1-2228ea75ab46"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224231Z:40f91aac-fe85-4dd6-a71a-f1973e780eff"
+ "NORTHCENTRALUS:20200519T190548Z:46bf2669-4f69-4931-b2d1-2228ea75ab46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3153,7 +3153,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:30 GMT"
+ "Tue, 19 May 2020 19:05:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3162,23 +3162,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3165cd1b-43ee-4a98-ade1-6518aaee6b50"
+ "7dce2f29-bca7-4dbe-bda0-700c310af0e9"
],
"Accept-Language": [
"en-US"
@@ -3201,13 +3201,13 @@
"11909"
],
"x-ms-request-id": [
- "bbe20ac0-b012-431f-a992-1bb03d797921"
+ "c865bb08-b2de-478d-a8f3-a1f07201a95d"
],
"x-ms-correlation-request-id": [
- "bbe20ac0-b012-431f-a992-1bb03d797921"
+ "c865bb08-b2de-478d-a8f3-a1f07201a95d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224231Z:bbe20ac0-b012-431f-a992-1bb03d797921"
+ "NORTHCENTRALUS:20200519T190548Z:c865bb08-b2de-478d-a8f3-a1f07201a95d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3216,7 +3216,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:31 GMT"
+ "Tue, 19 May 2020 19:05:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3225,23 +3225,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90314bec-0c0b-4bbb-8c9c-2a47c4762b22"
+ "98899772-54a3-4aeb-978c-db93fb828791"
],
"Accept-Language": [
"en-US"
@@ -3264,13 +3264,13 @@
"11907"
],
"x-ms-request-id": [
- "c5143217-fcce-40d5-ac26-27e742d9ba7e"
+ "e8ac13cc-b80d-4da4-ab6f-4654bb301a13"
],
"x-ms-correlation-request-id": [
- "c5143217-fcce-40d5-ac26-27e742d9ba7e"
+ "e8ac13cc-b80d-4da4-ab6f-4654bb301a13"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224231Z:c5143217-fcce-40d5-ac26-27e742d9ba7e"
+ "NORTHCENTRALUS:20200519T190548Z:e8ac13cc-b80d-4da4-ab6f-4654bb301a13"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3279,7 +3279,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:31 GMT"
+ "Tue, 19 May 2020 19:05:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3288,23 +3288,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "128d5f5d-08a2-4f81-9716-ff195c2e041a"
+ "467a53c8-b06e-4657-82f8-cb211bd2c113"
],
"Accept-Language": [
"en-US"
@@ -3327,13 +3327,13 @@
"11905"
],
"x-ms-request-id": [
- "f4a81b81-8026-4343-8cd0-d6e435d5d4a2"
+ "f816b174-e460-458f-98cc-5b8299f28970"
],
"x-ms-correlation-request-id": [
- "f4a81b81-8026-4343-8cd0-d6e435d5d4a2"
+ "f816b174-e460-458f-98cc-5b8299f28970"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224232Z:f4a81b81-8026-4343-8cd0-d6e435d5d4a2"
+ "NORTHCENTRALUS:20200519T190549Z:f816b174-e460-458f-98cc-5b8299f28970"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3342,7 +3342,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:31 GMT"
+ "Tue, 19 May 2020 19:05:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3351,23 +3351,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "abc081ee-b6f9-47f8-8bfb-1bc7e2b7316f"
+ "73c8cf01-4d55-4afc-b68f-e0e6ac3be126"
],
"Accept-Language": [
"en-US"
@@ -3390,13 +3390,13 @@
"11903"
],
"x-ms-request-id": [
- "b168ff0c-9538-419d-92df-30ceaf83e95d"
+ "1408f552-dc8a-4ce9-a570-2f91570a7fab"
],
"x-ms-correlation-request-id": [
- "b168ff0c-9538-419d-92df-30ceaf83e95d"
+ "1408f552-dc8a-4ce9-a570-2f91570a7fab"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224232Z:b168ff0c-9538-419d-92df-30ceaf83e95d"
+ "NORTHCENTRALUS:20200519T190549Z:1408f552-dc8a-4ce9-a570-2f91570a7fab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3405,7 +3405,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:32 GMT"
+ "Tue, 19 May 2020 19:05:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3414,23 +3414,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3cf42a2-90b1-4c04-8621-842b84629c1e"
+ "6a89df68-b16c-4d4c-a00b-0d1af63d3d6a"
],
"Accept-Language": [
"en-US"
@@ -3453,13 +3453,13 @@
"11901"
],
"x-ms-request-id": [
- "d5063966-ecc1-40cb-976f-81d1034878f6"
+ "9269ef86-1c33-4d3b-a342-68632b1fac5c"
],
"x-ms-correlation-request-id": [
- "d5063966-ecc1-40cb-976f-81d1034878f6"
+ "9269ef86-1c33-4d3b-a342-68632b1fac5c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224233Z:d5063966-ecc1-40cb-976f-81d1034878f6"
+ "NORTHCENTRALUS:20200519T190550Z:9269ef86-1c33-4d3b-a342-68632b1fac5c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3468,7 +3468,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:32 GMT"
+ "Tue, 19 May 2020 19:05:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3477,23 +3477,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76a8ecf3-3ed2-4ba8-aa79-b974e5901ff3"
+ "59ab99a2-7d92-43d2-8135-7a017a5cface"
],
"Accept-Language": [
"en-US"
@@ -3516,13 +3516,13 @@
"11899"
],
"x-ms-request-id": [
- "14439155-dce9-4ccf-8229-fdcf5ea7bc83"
+ "7690c88a-2d45-414c-9753-e205242d87db"
],
"x-ms-correlation-request-id": [
- "14439155-dce9-4ccf-8229-fdcf5ea7bc83"
+ "7690c88a-2d45-414c-9753-e205242d87db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224233Z:14439155-dce9-4ccf-8229-fdcf5ea7bc83"
+ "NORTHCENTRALUS:20200519T190550Z:7690c88a-2d45-414c-9753-e205242d87db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3531,7 +3531,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:33 GMT"
+ "Tue, 19 May 2020 19:05:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3540,23 +3540,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9066a179-9c1d-4cec-8dd7-44ebf3d4dd29"
+ "a4c5a000-2789-43ee-80fb-fffbc49924b8"
],
"Accept-Language": [
"en-US"
@@ -3579,13 +3579,13 @@
"11897"
],
"x-ms-request-id": [
- "d05b61d7-178e-46d9-a83f-481738fc417b"
+ "eb525ebf-c6e4-4aaf-9a11-e9b640f99f86"
],
"x-ms-correlation-request-id": [
- "d05b61d7-178e-46d9-a83f-481738fc417b"
+ "eb525ebf-c6e4-4aaf-9a11-e9b640f99f86"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224233Z:d05b61d7-178e-46d9-a83f-481738fc417b"
+ "NORTHCENTRALUS:20200519T190551Z:eb525ebf-c6e4-4aaf-9a11-e9b640f99f86"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3594,7 +3594,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:33 GMT"
+ "Tue, 19 May 2020 19:05:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3603,23 +3603,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8539641Z\",\r\n \"duration\": \"PT15.9726632S\",\r\n \"trackingId\": \"c1ac3971-46cf-4436-b396-b9c29eb9e23a\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1351004b-6807-465f-b77b-5bfa5070b591"
+ "dbc8a2b6-e85c-43f3-9183-9ca4ffe59f7a"
],
"Accept-Language": [
"en-US"
@@ -3642,13 +3642,13 @@
"11895"
],
"x-ms-request-id": [
- "220051f0-1c78-450d-b448-06c2039d9f7c"
+ "4e818ae3-c993-4125-bdbd-7706f26ccd73"
],
"x-ms-correlation-request-id": [
- "220051f0-1c78-450d-b448-06c2039d9f7c"
+ "4e818ae3-c993-4125-bdbd-7706f26ccd73"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224234Z:220051f0-1c78-450d-b448-06c2039d9f7c"
+ "NORTHCENTRALUS:20200519T190551Z:4e818ae3-c993-4125-bdbd-7706f26ccd73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3657,7 +3657,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:33 GMT"
+ "Tue, 19 May 2020 19:05:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3666,23 +3666,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11569b5b-aa9b-4e6f-91c8-1e0443e048fd"
+ "5a8ba72a-88d1-4183-8493-0b9d7b1619ca"
],
"Accept-Language": [
"en-US"
@@ -3705,13 +3705,13 @@
"11893"
],
"x-ms-request-id": [
- "3e03e3d0-c033-4d6c-b666-2cb7b3cb3711"
+ "daa653c9-9b9c-438c-b70a-5ba2453d1fd4"
],
"x-ms-correlation-request-id": [
- "3e03e3d0-c033-4d6c-b666-2cb7b3cb3711"
+ "daa653c9-9b9c-438c-b70a-5ba2453d1fd4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224234Z:3e03e3d0-c033-4d6c-b666-2cb7b3cb3711"
+ "NORTHCENTRALUS:20200519T190551Z:daa653c9-9b9c-438c-b70a-5ba2453d1fd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3720,7 +3720,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:34 GMT"
+ "Tue, 19 May 2020 19:05:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3729,23 +3729,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b719e529-d070-46c3-9c50-ea2e2ab4207b"
+ "8d216211-4de2-4385-a180-f68d0ce460d4"
],
"Accept-Language": [
"en-US"
@@ -3768,13 +3768,13 @@
"11891"
],
"x-ms-request-id": [
- "06578c35-c450-4482-92cd-4ed20f775c5f"
+ "41b22803-89bc-44de-95d4-c6d7f0612ca0"
],
"x-ms-correlation-request-id": [
- "06578c35-c450-4482-92cd-4ed20f775c5f"
+ "41b22803-89bc-44de-95d4-c6d7f0612ca0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224235Z:06578c35-c450-4482-92cd-4ed20f775c5f"
+ "NORTHCENTRALUS:20200519T190552Z:41b22803-89bc-44de-95d4-c6d7f0612ca0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3783,7 +3783,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:34 GMT"
+ "Tue, 19 May 2020 19:05:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3792,23 +3792,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0198e647-9c79-4e77-8772-5277d4b38ae7"
+ "751e4e1a-8219-4be3-9001-4a755efa658b"
],
"Accept-Language": [
"en-US"
@@ -3831,13 +3831,13 @@
"11889"
],
"x-ms-request-id": [
- "34ef7c3f-3101-4802-9642-92d5ccafc7a0"
+ "d1b1ef12-3588-4870-889a-7b3afbd201e5"
],
"x-ms-correlation-request-id": [
- "34ef7c3f-3101-4802-9642-92d5ccafc7a0"
+ "d1b1ef12-3588-4870-889a-7b3afbd201e5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224235Z:34ef7c3f-3101-4802-9642-92d5ccafc7a0"
+ "NORTHCENTRALUS:20200519T190552Z:d1b1ef12-3588-4870-889a-7b3afbd201e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3846,7 +3846,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:35 GMT"
+ "Tue, 19 May 2020 19:05:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3855,23 +3855,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29a106c9-de42-4afe-b087-f2a5cf995f81"
+ "05070314-3495-412b-9b96-5c25b63c01b3"
],
"Accept-Language": [
"en-US"
@@ -3894,13 +3894,13 @@
"11887"
],
"x-ms-request-id": [
- "42ce2542-b401-49cf-a3c4-31c39021d619"
+ "5a7e4dc3-f83f-4961-950c-02da9c87cd99"
],
"x-ms-correlation-request-id": [
- "42ce2542-b401-49cf-a3c4-31c39021d619"
+ "5a7e4dc3-f83f-4961-950c-02da9c87cd99"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224235Z:42ce2542-b401-49cf-a3c4-31c39021d619"
+ "NORTHCENTRALUS:20200519T190553Z:5a7e4dc3-f83f-4961-950c-02da9c87cd99"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3909,7 +3909,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:35 GMT"
+ "Tue, 19 May 2020 19:05:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3918,23 +3918,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4348719Z\",\r\n \"duration\": \"PT16.4973909S\",\r\n \"trackingId\": \"464b1aae-8f77-4153-a3f7-74429cc6cfb3\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "81d46482-dd94-4f47-a6e1-bee06ddae8b3"
+ "99e6f256-19c3-4488-9dd1-f6c859ac2806"
],
"Accept-Language": [
"en-US"
@@ -3957,13 +3957,13 @@
"11885"
],
"x-ms-request-id": [
- "8e03601c-d262-42d5-947b-ef0846aa5d99"
+ "3c88e4ef-1b80-4c0d-b04f-00e0908820f5"
],
"x-ms-correlation-request-id": [
- "8e03601c-d262-42d5-947b-ef0846aa5d99"
+ "3c88e4ef-1b80-4c0d-b04f-00e0908820f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224236Z:8e03601c-d262-42d5-947b-ef0846aa5d99"
+ "NORTHCENTRALUS:20200519T190553Z:3c88e4ef-1b80-4c0d-b04f-00e0908820f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3972,7 +3972,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:35 GMT"
+ "Tue, 19 May 2020 19:05:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3981,23 +3981,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "666f4f96-1980-4cac-a97c-cb9d4c801d1e"
+ "d698542e-b22f-45f7-a130-64712db338fe"
],
"Accept-Language": [
"en-US"
@@ -4020,13 +4020,13 @@
"11883"
],
"x-ms-request-id": [
- "5b418469-abbf-470a-9434-f26f5038d475"
+ "57704d25-c26e-4e8f-8a7a-8faddde1248c"
],
"x-ms-correlation-request-id": [
- "5b418469-abbf-470a-9434-f26f5038d475"
+ "57704d25-c26e-4e8f-8a7a-8faddde1248c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224236Z:5b418469-abbf-470a-9434-f26f5038d475"
+ "NORTHCENTRALUS:20200519T190553Z:57704d25-c26e-4e8f-8a7a-8faddde1248c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4035,7 +4035,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:36 GMT"
+ "Tue, 19 May 2020 19:05:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4044,23 +4044,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1db0a22-c34b-40df-b60b-41c3e9e1f54a"
+ "079eb2de-7135-491e-804d-24ab1f5defb2"
],
"Accept-Language": [
"en-US"
@@ -4083,13 +4083,13 @@
"11881"
],
"x-ms-request-id": [
- "6287cf73-a16d-48d3-ab60-cef40868a2f8"
+ "8f8dc017-41ba-4afa-85fc-fc8421495079"
],
"x-ms-correlation-request-id": [
- "6287cf73-a16d-48d3-ab60-cef40868a2f8"
+ "8f8dc017-41ba-4afa-85fc-fc8421495079"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224237Z:6287cf73-a16d-48d3-ab60-cef40868a2f8"
+ "NORTHCENTRALUS:20200519T190554Z:8f8dc017-41ba-4afa-85fc-fc8421495079"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4098,7 +4098,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:36 GMT"
+ "Tue, 19 May 2020 19:05:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4107,23 +4107,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee06928e-30d9-49f0-9131-a30367fd59ba"
+ "681859b6-d1ec-4eea-bde5-b0cee064188a"
],
"Accept-Language": [
"en-US"
@@ -4146,13 +4146,13 @@
"11879"
],
"x-ms-request-id": [
- "ea82e762-2adc-4835-a167-588177386775"
+ "8cc26edb-5677-499d-a595-85ad1f932af9"
],
"x-ms-correlation-request-id": [
- "ea82e762-2adc-4835-a167-588177386775"
+ "8cc26edb-5677-499d-a595-85ad1f932af9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224237Z:ea82e762-2adc-4835-a167-588177386775"
+ "NORTHCENTRALUS:20200519T190554Z:8cc26edb-5677-499d-a595-85ad1f932af9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4161,7 +4161,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:37 GMT"
+ "Tue, 19 May 2020 19:05:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4170,23 +4170,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1184eaf1-0382-4f36-8815-0b2e04e55c0f"
+ "464c4619-dce7-4bba-970b-ab3f8922f402"
],
"Accept-Language": [
"en-US"
@@ -4209,13 +4209,13 @@
"11877"
],
"x-ms-request-id": [
- "4264c976-cccf-4358-9eb4-9052aaf9cfbf"
+ "a409e9b1-ddd9-4863-a34b-1948cd41c6b2"
],
"x-ms-correlation-request-id": [
- "4264c976-cccf-4358-9eb4-9052aaf9cfbf"
+ "a409e9b1-ddd9-4863-a34b-1948cd41c6b2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224238Z:4264c976-cccf-4358-9eb4-9052aaf9cfbf"
+ "NORTHCENTRALUS:20200519T190555Z:a409e9b1-ddd9-4863-a34b-1948cd41c6b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4224,7 +4224,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:37 GMT"
+ "Tue, 19 May 2020 19:05:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4233,23 +4233,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee43d331-9a44-4941-ac2d-46b28b9c5d6d"
+ "2757fe70-1a12-4e7f-81c9-a6cdcb21f0e3"
],
"Accept-Language": [
"en-US"
@@ -4272,13 +4272,13 @@
"11875"
],
"x-ms-request-id": [
- "80c3f9f1-bdee-4050-b495-110b6c71f689"
+ "24d8e4be-99c1-4af0-821b-045ae03a95fc"
],
"x-ms-correlation-request-id": [
- "80c3f9f1-bdee-4050-b495-110b6c71f689"
+ "24d8e4be-99c1-4af0-821b-045ae03a95fc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224238Z:80c3f9f1-bdee-4050-b495-110b6c71f689"
+ "NORTHCENTRALUS:20200519T190555Z:24d8e4be-99c1-4af0-821b-045ae03a95fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4287,7 +4287,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:38 GMT"
+ "Tue, 19 May 2020 19:05:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4296,23 +4296,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e07da25-03c4-4a3e-8ba8-43168372fcd5"
+ "ce9450f8-9053-4f20-aa76-b7e60b4ff65b"
],
"Accept-Language": [
"en-US"
@@ -4335,13 +4335,13 @@
"11873"
],
"x-ms-request-id": [
- "9134d032-d575-4117-9339-a9b293166255"
+ "bc6730f1-8403-49a6-8278-4a3c9acbf6c7"
],
"x-ms-correlation-request-id": [
- "9134d032-d575-4117-9339-a9b293166255"
+ "bc6730f1-8403-49a6-8278-4a3c9acbf6c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224239Z:9134d032-d575-4117-9339-a9b293166255"
+ "NORTHCENTRALUS:20200519T190555Z:bc6730f1-8403-49a6-8278-4a3c9acbf6c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4350,7 +4350,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:38 GMT"
+ "Tue, 19 May 2020 19:05:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4359,23 +4359,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8af4b7ed-6e41-4c55-85c9-f64699c855f2"
+ "707773c3-a659-4e6d-85f2-bc69e8dc647a"
],
"Accept-Language": [
"en-US"
@@ -4398,13 +4398,13 @@
"11871"
],
"x-ms-request-id": [
- "cdb4ff0a-377c-4e9f-aedf-7482daca4268"
+ "63de299b-0f59-41fb-8677-2cc57b1aeba3"
],
"x-ms-correlation-request-id": [
- "cdb4ff0a-377c-4e9f-aedf-7482daca4268"
+ "63de299b-0f59-41fb-8677-2cc57b1aeba3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224239Z:cdb4ff0a-377c-4e9f-aedf-7482daca4268"
+ "NORTHCENTRALUS:20200519T190556Z:63de299b-0f59-41fb-8677-2cc57b1aeba3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4413,7 +4413,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:38 GMT"
+ "Tue, 19 May 2020 19:05:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4422,23 +4422,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2bd75c3-6500-4b10-9a12-a96276c4c906"
+ "b029989e-578d-4a5b-9024-d0e6505a6b7e"
],
"Accept-Language": [
"en-US"
@@ -4461,13 +4461,13 @@
"11869"
],
"x-ms-request-id": [
- "04c1fe28-e372-4adb-a782-e76034945e8a"
+ "ccc8e205-b7a5-4891-a49b-49d2ea3d3dc0"
],
"x-ms-correlation-request-id": [
- "04c1fe28-e372-4adb-a782-e76034945e8a"
+ "ccc8e205-b7a5-4891-a49b-49d2ea3d3dc0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224239Z:04c1fe28-e372-4adb-a782-e76034945e8a"
+ "NORTHCENTRALUS:20200519T190556Z:ccc8e205-b7a5-4891-a49b-49d2ea3d3dc0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4476,7 +4476,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:39 GMT"
+ "Tue, 19 May 2020 19:05:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4485,23 +4485,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d05ad0e8-927a-452a-b6cf-628841d679d2"
+ "aff73cae-dbaa-48bb-afde-8611d3a241c0"
],
"Accept-Language": [
"en-US"
@@ -4524,13 +4524,13 @@
"11867"
],
"x-ms-request-id": [
- "8560de59-8790-4c2d-a283-8b44e3147dc5"
+ "08afe0c0-2076-4d5b-8753-d779a2f5a4e2"
],
"x-ms-correlation-request-id": [
- "8560de59-8790-4c2d-a283-8b44e3147dc5"
+ "08afe0c0-2076-4d5b-8753-d779a2f5a4e2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224240Z:8560de59-8790-4c2d-a283-8b44e3147dc5"
+ "NORTHCENTRALUS:20200519T190557Z:08afe0c0-2076-4d5b-8753-d779a2f5a4e2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4539,7 +4539,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:39 GMT"
+ "Tue, 19 May 2020 19:05:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4548,23 +4548,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9c385ed-eb71-4f48-b7db-3d39eb1f43da"
+ "f309dec5-c1f9-40f2-aa93-2fa80af91529"
],
"Accept-Language": [
"en-US"
@@ -4587,13 +4587,13 @@
"11865"
],
"x-ms-request-id": [
- "326268bd-bcce-4f3b-b37b-b255d73f0f11"
+ "8ad6315f-dbb8-469e-8a96-01eadc729583"
],
"x-ms-correlation-request-id": [
- "326268bd-bcce-4f3b-b37b-b255d73f0f11"
+ "8ad6315f-dbb8-469e-8a96-01eadc729583"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224240Z:326268bd-bcce-4f3b-b37b-b255d73f0f11"
+ "NORTHCENTRALUS:20200519T190557Z:8ad6315f-dbb8-469e-8a96-01eadc729583"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4602,7 +4602,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:40 GMT"
+ "Tue, 19 May 2020 19:05:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4611,23 +4611,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.144139Z\",\r\n \"duration\": \"PT22.2628381S\",\r\n \"trackingId\": \"4ee11263-0e34-493c-afc4-9de9d69f1451\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b4f285e-4915-443e-bbcc-143819aadbc3"
+ "12f61e81-cffd-4f77-90e8-14646ada7ceb"
],
"Accept-Language": [
"en-US"
@@ -4650,13 +4650,13 @@
"11863"
],
"x-ms-request-id": [
- "a3eac42d-bc71-4db1-b781-a31feaf9060a"
+ "2acf1b10-f9ac-4350-a3d7-e50efe42de4a"
],
"x-ms-correlation-request-id": [
- "a3eac42d-bc71-4db1-b781-a31feaf9060a"
+ "2acf1b10-f9ac-4350-a3d7-e50efe42de4a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224241Z:a3eac42d-bc71-4db1-b781-a31feaf9060a"
+ "NORTHCENTRALUS:20200519T190557Z:2acf1b10-f9ac-4350-a3d7-e50efe42de4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4665,7 +4665,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:40 GMT"
+ "Tue, 19 May 2020 19:05:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4674,23 +4674,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53c7ce77-2bd0-4bff-a151-b4f8aa32be15"
+ "d3024c4b-645e-490b-83fc-7715e778eb1c"
],
"Accept-Language": [
"en-US"
@@ -4713,13 +4713,13 @@
"11861"
],
"x-ms-request-id": [
- "1bcecbe2-808c-49bb-941d-d4e7d707c70b"
+ "16720024-1e0c-4c2b-8b5c-44fa6e9e4f2a"
],
"x-ms-correlation-request-id": [
- "1bcecbe2-808c-49bb-941d-d4e7d707c70b"
+ "16720024-1e0c-4c2b-8b5c-44fa6e9e4f2a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224241Z:1bcecbe2-808c-49bb-941d-d4e7d707c70b"
+ "NORTHCENTRALUS:20200519T190558Z:16720024-1e0c-4c2b-8b5c-44fa6e9e4f2a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4728,7 +4728,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:40 GMT"
+ "Tue, 19 May 2020 19:05:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4737,23 +4737,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2fe5524-466e-43a1-ae2d-eb772b8d0a70"
+ "5eb66573-8d1b-4dc1-8b77-3e93e6dc226e"
],
"Accept-Language": [
"en-US"
@@ -4776,13 +4776,13 @@
"11859"
],
"x-ms-request-id": [
- "624708c5-4034-4c3d-943c-71debadb0f2b"
+ "8d34838a-8874-4dbe-86ff-be9f7357f16b"
],
"x-ms-correlation-request-id": [
- "624708c5-4034-4c3d-943c-71debadb0f2b"
+ "8d34838a-8874-4dbe-86ff-be9f7357f16b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224241Z:624708c5-4034-4c3d-943c-71debadb0f2b"
+ "NORTHCENTRALUS:20200519T190558Z:8d34838a-8874-4dbe-86ff-be9f7357f16b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4791,7 +4791,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:41 GMT"
+ "Tue, 19 May 2020 19:05:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4800,23 +4800,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0563dde2-87e7-4fcb-854d-5c4673ddff83"
+ "83755f8a-a472-4601-a86b-56cabb5af123"
],
"Accept-Language": [
"en-US"
@@ -4839,13 +4839,13 @@
"11857"
],
"x-ms-request-id": [
- "8ced39f6-3fb9-4aaf-a2c5-b36c505c98fd"
+ "5fe3bb36-8742-484d-96b8-489d84578094"
],
"x-ms-correlation-request-id": [
- "8ced39f6-3fb9-4aaf-a2c5-b36c505c98fd"
+ "5fe3bb36-8742-484d-96b8-489d84578094"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224242Z:8ced39f6-3fb9-4aaf-a2c5-b36c505c98fd"
+ "NORTHCENTRALUS:20200519T190559Z:5fe3bb36-8742-484d-96b8-489d84578094"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4854,7 +4854,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:41 GMT"
+ "Tue, 19 May 2020 19:05:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4863,23 +4863,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:36.0667446Z\",\r\n \"duration\": \"PT22.1292636S\",\r\n \"trackingId\": \"b699469b-cdd3-4a58-94fd-84a93423b01d\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "115bf4d2-4744-4a5c-b34c-150d15829888"
+ "276adee4-6982-4972-bc5e-57699239e678"
],
"Accept-Language": [
"en-US"
@@ -4902,13 +4902,13 @@
"11855"
],
"x-ms-request-id": [
- "f8654084-56f5-440c-bf63-5734897ff21a"
+ "e3b0af09-821b-494d-bc7c-9f93506694df"
],
"x-ms-correlation-request-id": [
- "f8654084-56f5-440c-bf63-5734897ff21a"
+ "e3b0af09-821b-494d-bc7c-9f93506694df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224242Z:f8654084-56f5-440c-bf63-5734897ff21a"
+ "NORTHCENTRALUS:20200519T190559Z:e3b0af09-821b-494d-bc7c-9f93506694df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4917,7 +4917,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:42 GMT"
+ "Tue, 19 May 2020 19:05:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4926,23 +4926,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e7dc87b9-089e-4125-912f-0a6f4f1cbb46"
+ "f56d55ab-a47f-4925-8df7-59e3ec4ad10f"
],
"Accept-Language": [
"en-US"
@@ -4965,13 +4965,13 @@
"11853"
],
"x-ms-request-id": [
- "f137646e-e46d-43ff-983e-4ff84dbeb678"
+ "d8c64fb0-67e5-4b2e-893c-e7f649c836c1"
],
"x-ms-correlation-request-id": [
- "f137646e-e46d-43ff-983e-4ff84dbeb678"
+ "d8c64fb0-67e5-4b2e-893c-e7f649c836c1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224243Z:f137646e-e46d-43ff-983e-4ff84dbeb678"
+ "NORTHCENTRALUS:20200519T190600Z:d8c64fb0-67e5-4b2e-893c-e7f649c836c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4980,7 +4980,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:42 GMT"
+ "Tue, 19 May 2020 19:05:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4989,23 +4989,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f738d05f-b90b-43b9-ac9f-5782f8b12ab2"
+ "edebcd67-c897-432e-8c3a-ba1b69a13d19"
],
"Accept-Language": [
"en-US"
@@ -5028,13 +5028,13 @@
"11851"
],
"x-ms-request-id": [
- "419a233a-b80e-451d-ab29-d44dc5d4d05f"
+ "bd605ee8-e8a0-4819-90f4-e67f557cbc7a"
],
"x-ms-correlation-request-id": [
- "419a233a-b80e-451d-ab29-d44dc5d4d05f"
+ "bd605ee8-e8a0-4819-90f4-e67f557cbc7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224243Z:419a233a-b80e-451d-ab29-d44dc5d4d05f"
+ "NORTHCENTRALUS:20200519T190600Z:bd605ee8-e8a0-4819-90f4-e67f557cbc7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5043,7 +5043,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:42 GMT"
+ "Tue, 19 May 2020 19:05:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5052,23 +5052,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "916da019-0a69-4682-9b03-6e0f21427704"
+ "53a74820-c48a-43a5-9fd7-e4aa96cb9709"
],
"Accept-Language": [
"en-US"
@@ -5091,13 +5091,13 @@
"11849"
],
"x-ms-request-id": [
- "7a2703f9-6e59-40d0-a07d-fb13ec71b863"
+ "67652261-e2d7-49a1-9c3e-958b4203b1a2"
],
"x-ms-correlation-request-id": [
- "7a2703f9-6e59-40d0-a07d-fb13ec71b863"
+ "67652261-e2d7-49a1-9c3e-958b4203b1a2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224244Z:7a2703f9-6e59-40d0-a07d-fb13ec71b863"
+ "NORTHCENTRALUS:20200519T190601Z:67652261-e2d7-49a1-9c3e-958b4203b1a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5106,7 +5106,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:43 GMT"
+ "Tue, 19 May 2020 19:06:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5115,23 +5115,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce24c6fa-cf13-45c9-a2b9-279d101804c3"
+ "af6ffdba-021d-49e8-ad26-8c77a8db803c"
],
"Accept-Language": [
"en-US"
@@ -5154,13 +5154,13 @@
"11847"
],
"x-ms-request-id": [
- "a51b6ddd-5da7-4b2e-bc64-0840955972d0"
+ "85e97563-99ac-4562-b8dd-f94c128bc84a"
],
"x-ms-correlation-request-id": [
- "a51b6ddd-5da7-4b2e-bc64-0840955972d0"
+ "85e97563-99ac-4562-b8dd-f94c128bc84a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224244Z:a51b6ddd-5da7-4b2e-bc64-0840955972d0"
+ "NORTHCENTRALUS:20200519T190601Z:85e97563-99ac-4562-b8dd-f94c128bc84a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5169,7 +5169,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:43 GMT"
+ "Tue, 19 May 2020 19:06:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5178,23 +5178,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1b992af-4da5-44d1-9b15-8106d710296b"
+ "cb193509-a73f-4d9d-b5c0-7354d0a108a9"
],
"Accept-Language": [
"en-US"
@@ -5217,13 +5217,13 @@
"11845"
],
"x-ms-request-id": [
- "e5abbd58-c435-4638-ade2-2c35cd13cf56"
+ "7264b79c-5267-42de-abaf-a7cab0a7ff38"
],
"x-ms-correlation-request-id": [
- "e5abbd58-c435-4638-ade2-2c35cd13cf56"
+ "7264b79c-5267-42de-abaf-a7cab0a7ff38"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224244Z:e5abbd58-c435-4638-ade2-2c35cd13cf56"
+ "NORTHCENTRALUS:20200519T190601Z:7264b79c-5267-42de-abaf-a7cab0a7ff38"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5232,7 +5232,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:44 GMT"
+ "Tue, 19 May 2020 19:06:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5241,23 +5241,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fc5ddc1-2b7d-423f-acac-e3aef9c3244e"
+ "adde7026-7d8b-4c92-b42d-c8c3bccfcf98"
],
"Accept-Language": [
"en-US"
@@ -5280,13 +5280,13 @@
"11843"
],
"x-ms-request-id": [
- "a076d189-57ea-4d75-9b83-23d84222b90f"
+ "a6ed42a5-5d37-4fb6-be03-b0a460bcc7a2"
],
"x-ms-correlation-request-id": [
- "a076d189-57ea-4d75-9b83-23d84222b90f"
+ "a6ed42a5-5d37-4fb6-be03-b0a460bcc7a2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224245Z:a076d189-57ea-4d75-9b83-23d84222b90f"
+ "NORTHCENTRALUS:20200519T190602Z:a6ed42a5-5d37-4fb6-be03-b0a460bcc7a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5295,7 +5295,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:44 GMT"
+ "Tue, 19 May 2020 19:06:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5304,23 +5304,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c8c613e-4824-406c-87ab-0f806f87b5e2"
+ "d96cfd01-fa1c-49ae-8b5a-0a09ff3d7379"
],
"Accept-Language": [
"en-US"
@@ -5343,13 +5343,13 @@
"11841"
],
"x-ms-request-id": [
- "2af077e9-ab12-478d-ad92-835468723b70"
+ "c70f6387-1d49-48d1-8398-412791664a0d"
],
"x-ms-correlation-request-id": [
- "2af077e9-ab12-478d-ad92-835468723b70"
+ "c70f6387-1d49-48d1-8398-412791664a0d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224245Z:2af077e9-ab12-478d-ad92-835468723b70"
+ "NORTHCENTRALUS:20200519T190602Z:c70f6387-1d49-48d1-8398-412791664a0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5358,7 +5358,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:45 GMT"
+ "Tue, 19 May 2020 19:06:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5367,23 +5367,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01357ff3-e84c-4f09-ae24-26cc80bb7828"
+ "2465ba1e-1d9a-4479-ad90-613ef6bb1b65"
],
"Accept-Language": [
"en-US"
@@ -5406,13 +5406,13 @@
"11839"
],
"x-ms-request-id": [
- "deca9c10-e788-4b7c-b892-d3d623531adf"
+ "f1faff0c-8289-49b8-8d3d-9c198a8c74ed"
],
"x-ms-correlation-request-id": [
- "deca9c10-e788-4b7c-b892-d3d623531adf"
+ "f1faff0c-8289-49b8-8d3d-9c198a8c74ed"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224246Z:deca9c10-e788-4b7c-b892-d3d623531adf"
+ "NORTHCENTRALUS:20200519T190603Z:f1faff0c-8289-49b8-8d3d-9c198a8c74ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5421,7 +5421,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:45 GMT"
+ "Tue, 19 May 2020 19:06:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5430,23 +5430,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "37a2c972-be67-4760-bf40-5bd1dbfcf6db"
+ "d5d8e14e-b3bc-41e1-b7ae-8d7586e522b4"
],
"Accept-Language": [
"en-US"
@@ -5469,13 +5469,13 @@
"11837"
],
"x-ms-request-id": [
- "9b0016ab-575e-4b00-a371-487ed9d3a4c9"
+ "7e94661a-d91b-4f0d-b1d5-db40cb2ed1a4"
],
"x-ms-correlation-request-id": [
- "9b0016ab-575e-4b00-a371-487ed9d3a4c9"
+ "7e94661a-d91b-4f0d-b1d5-db40cb2ed1a4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224246Z:9b0016ab-575e-4b00-a371-487ed9d3a4c9"
+ "NORTHCENTRALUS:20200519T190603Z:7e94661a-d91b-4f0d-b1d5-db40cb2ed1a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5484,7 +5484,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:45 GMT"
+ "Tue, 19 May 2020 19:06:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5493,23 +5493,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d13d58a4-5d36-4bbb-bc4f-a314f119eb71"
+ "44ce8fdd-e3ab-4b46-9d80-0c289f7ed87a"
],
"Accept-Language": [
"en-US"
@@ -5532,13 +5532,13 @@
"11835"
],
"x-ms-request-id": [
- "535ecd3a-20c9-4155-8897-f1ca5a6baed3"
+ "57918069-850f-440d-864f-34a7afc7993f"
],
"x-ms-correlation-request-id": [
- "535ecd3a-20c9-4155-8897-f1ca5a6baed3"
+ "57918069-850f-440d-864f-34a7afc7993f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224246Z:535ecd3a-20c9-4155-8897-f1ca5a6baed3"
+ "NORTHCENTRALUS:20200519T190604Z:57918069-850f-440d-864f-34a7afc7993f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5547,7 +5547,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:46 GMT"
+ "Tue, 19 May 2020 19:06:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5556,23 +5556,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25e1da0e-6173-4858-9511-1dbb89df2ea1"
+ "6b034938-65c6-4046-8ee4-8c61a26fba82"
],
"Accept-Language": [
"en-US"
@@ -5595,13 +5595,13 @@
"11833"
],
"x-ms-request-id": [
- "1bc1e0ab-8086-462b-9a89-58b6bf105caa"
+ "67b20619-2649-4259-a63c-ae72924531cc"
],
"x-ms-correlation-request-id": [
- "1bc1e0ab-8086-462b-9a89-58b6bf105caa"
+ "67b20619-2649-4259-a63c-ae72924531cc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224247Z:1bc1e0ab-8086-462b-9a89-58b6bf105caa"
+ "NORTHCENTRALUS:20200519T190604Z:67b20619-2649-4259-a63c-ae72924531cc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5610,7 +5610,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:46 GMT"
+ "Tue, 19 May 2020 19:06:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5619,23 +5619,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "303cbd1c-dc5d-4035-bf0e-24e824866e3c"
+ "2f37e628-4569-48dc-b823-d33b15f5e7ce"
],
"Accept-Language": [
"en-US"
@@ -5658,13 +5658,13 @@
"11831"
],
"x-ms-request-id": [
- "41b082ab-d920-4965-a499-28f1ceef43a4"
+ "dc6357ed-20c1-444d-b394-b2419e8aa735"
],
"x-ms-correlation-request-id": [
- "41b082ab-d920-4965-a499-28f1ceef43a4"
+ "dc6357ed-20c1-444d-b394-b2419e8aa735"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224247Z:41b082ab-d920-4965-a499-28f1ceef43a4"
+ "NORTHCENTRALUS:20200519T190604Z:dc6357ed-20c1-444d-b394-b2419e8aa735"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5673,7 +5673,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:47 GMT"
+ "Tue, 19 May 2020 19:06:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5682,23 +5682,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b3ecb33-ccd1-48ba-a39c-4ae5fa6e21fd"
+ "4045c042-0a71-47ed-a229-ebf47040d03d"
],
"Accept-Language": [
"en-US"
@@ -5721,13 +5721,13 @@
"11829"
],
"x-ms-request-id": [
- "724fb219-aa3a-4e5e-a35a-7efa6920c1cd"
+ "4cf18a77-783c-44da-98c8-203519c732c4"
],
"x-ms-correlation-request-id": [
- "724fb219-aa3a-4e5e-a35a-7efa6920c1cd"
+ "4cf18a77-783c-44da-98c8-203519c732c4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224248Z:724fb219-aa3a-4e5e-a35a-7efa6920c1cd"
+ "NORTHCENTRALUS:20200519T190605Z:4cf18a77-783c-44da-98c8-203519c732c4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5736,7 +5736,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:47 GMT"
+ "Tue, 19 May 2020 19:06:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5745,23 +5745,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d953a56-e55b-47a7-89ef-ab57cc443fe6"
+ "d29d25c9-6225-4f45-9365-6277a225f817"
],
"Accept-Language": [
"en-US"
@@ -5784,13 +5784,13 @@
"11827"
],
"x-ms-request-id": [
- "652ebc8d-37cc-4592-8c5d-ac8aedc753b8"
+ "5b4ec068-7526-4c7f-8e97-e73b418f4085"
],
"x-ms-correlation-request-id": [
- "652ebc8d-37cc-4592-8c5d-ac8aedc753b8"
+ "5b4ec068-7526-4c7f-8e97-e73b418f4085"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224248Z:652ebc8d-37cc-4592-8c5d-ac8aedc753b8"
+ "NORTHCENTRALUS:20200519T190605Z:5b4ec068-7526-4c7f-8e97-e73b418f4085"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5799,7 +5799,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:47 GMT"
+ "Tue, 19 May 2020 19:06:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5808,23 +5808,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6405233Z\",\r\n \"duration\": \"PT28.7592224S\",\r\n \"trackingId\": \"21e51039-368a-4dc1-ada2-3ed33d0e62c8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "989dd772-bc70-488e-ac11-cce71272e1eb"
+ "fcfe0f5e-5278-477d-a216-31b241c03842"
],
"Accept-Language": [
"en-US"
@@ -5847,13 +5847,13 @@
"11825"
],
"x-ms-request-id": [
- "f8e93545-2b1d-4294-8804-7bea107c9862"
+ "fe7dbb47-16cb-4cc5-8faf-e693aa2e5444"
],
"x-ms-correlation-request-id": [
- "f8e93545-2b1d-4294-8804-7bea107c9862"
+ "fe7dbb47-16cb-4cc5-8faf-e693aa2e5444"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224248Z:f8e93545-2b1d-4294-8804-7bea107c9862"
+ "NORTHCENTRALUS:20200519T190606Z:fe7dbb47-16cb-4cc5-8faf-e693aa2e5444"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5862,7 +5862,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:48 GMT"
+ "Tue, 19 May 2020 19:06:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5871,23 +5871,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e896b47-387c-4821-951d-1c5f68be4ed0"
+ "e3a8abec-8529-42ab-a3d6-ca47b5c197c7"
],
"Accept-Language": [
"en-US"
@@ -5910,13 +5910,13 @@
"11823"
],
"x-ms-request-id": [
- "4be9d354-475a-4e5f-8bcc-44f29bad5eb0"
+ "9aed2f60-1753-4b8f-9887-09b545425724"
],
"x-ms-correlation-request-id": [
- "4be9d354-475a-4e5f-8bcc-44f29bad5eb0"
+ "9aed2f60-1753-4b8f-9887-09b545425724"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224249Z:4be9d354-475a-4e5f-8bcc-44f29bad5eb0"
+ "NORTHCENTRALUS:20200519T190606Z:9aed2f60-1753-4b8f-9887-09b545425724"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5925,7 +5925,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:48 GMT"
+ "Tue, 19 May 2020 19:06:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5934,23 +5934,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "315dc537-eae6-4768-a3bc-cedc87d17752"
+ "315f28d6-4a31-4ee6-ae9b-3c6e7e21f70d"
],
"Accept-Language": [
"en-US"
@@ -5973,13 +5973,13 @@
"11821"
],
"x-ms-request-id": [
- "25c8d2ac-c820-48ed-97cf-ab68edde8159"
+ "e447474d-75e6-4d69-9304-434844296937"
],
"x-ms-correlation-request-id": [
- "25c8d2ac-c820-48ed-97cf-ab68edde8159"
+ "e447474d-75e6-4d69-9304-434844296937"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224249Z:25c8d2ac-c820-48ed-97cf-ab68edde8159"
+ "NORTHCENTRALUS:20200519T190607Z:e447474d-75e6-4d69-9304-434844296937"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5988,7 +5988,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:49 GMT"
+ "Tue, 19 May 2020 19:06:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5997,23 +5997,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4803162Z\",\r\n \"duration\": \"PT28.5428352S\",\r\n \"trackingId\": \"1b75a9d3-d81a-4fc7-ae03-f1ca49ac95ec\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9cf8f55c-6072-43f5-812a-751950c1cdb5"
+ "8b9abcbd-db72-4c9c-8448-ff268297c3dc"
],
"Accept-Language": [
"en-US"
@@ -6036,13 +6036,13 @@
"11819"
],
"x-ms-request-id": [
- "450c2742-3e64-42dd-866a-d6fd427b7757"
+ "bb5c4ac5-fc0d-4ae1-aefc-472f5007fb4f"
],
"x-ms-correlation-request-id": [
- "450c2742-3e64-42dd-866a-d6fd427b7757"
+ "bb5c4ac5-fc0d-4ae1-aefc-472f5007fb4f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224250Z:450c2742-3e64-42dd-866a-d6fd427b7757"
+ "NORTHCENTRALUS:20200519T190607Z:bb5c4ac5-fc0d-4ae1-aefc-472f5007fb4f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6051,7 +6051,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:49 GMT"
+ "Tue, 19 May 2020 19:06:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6060,23 +6060,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae1dceb2-02f1-4e1b-b117-ec365be533b0"
+ "dca1908d-a805-4627-a491-40cc0aee4c4f"
],
"Accept-Language": [
"en-US"
@@ -6099,13 +6099,13 @@
"11817"
],
"x-ms-request-id": [
- "2468d73a-4886-425f-a0ae-311d817271ea"
+ "a94412ea-d3f7-48c7-a802-22197dc6b1db"
],
"x-ms-correlation-request-id": [
- "2468d73a-4886-425f-a0ae-311d817271ea"
+ "a94412ea-d3f7-48c7-a802-22197dc6b1db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224250Z:2468d73a-4886-425f-a0ae-311d817271ea"
+ "NORTHCENTRALUS:20200519T190608Z:a94412ea-d3f7-48c7-a802-22197dc6b1db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6114,7 +6114,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:49 GMT"
+ "Tue, 19 May 2020 19:06:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6123,23 +6123,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb50d1c6-4abb-41d2-a27f-2db4d9c930c8"
+ "cf0e6cb8-a547-4b31-ae31-801c7a4cb04f"
],
"Accept-Language": [
"en-US"
@@ -6162,13 +6162,13 @@
"11815"
],
"x-ms-request-id": [
- "bcb6b0a2-8253-4e11-958a-5109969dc4b0"
+ "7aa50331-82e9-48ec-b076-029cf80faceb"
],
"x-ms-correlation-request-id": [
- "bcb6b0a2-8253-4e11-958a-5109969dc4b0"
+ "7aa50331-82e9-48ec-b076-029cf80faceb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224251Z:bcb6b0a2-8253-4e11-958a-5109969dc4b0"
+ "NORTHCENTRALUS:20200519T190608Z:7aa50331-82e9-48ec-b076-029cf80faceb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6177,7 +6177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:50 GMT"
+ "Tue, 19 May 2020 19:06:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6186,23 +6186,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94188c41-4219-41d3-93ff-93e0e3441b37"
+ "bc623f74-6329-4d62-b2e4-0f3105b47127"
],
"Accept-Language": [
"en-US"
@@ -6225,13 +6225,13 @@
"11813"
],
"x-ms-request-id": [
- "8c9c8a0c-b471-4486-a55e-02dff86d2a74"
+ "7df82a7b-a0fb-46da-88cc-f268b04dbf86"
],
"x-ms-correlation-request-id": [
- "8c9c8a0c-b471-4486-a55e-02dff86d2a74"
+ "7df82a7b-a0fb-46da-88cc-f268b04dbf86"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224251Z:8c9c8a0c-b471-4486-a55e-02dff86d2a74"
+ "NORTHCENTRALUS:20200519T190609Z:7df82a7b-a0fb-46da-88cc-f268b04dbf86"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6240,7 +6240,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:50 GMT"
+ "Tue, 19 May 2020 19:06:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6249,23 +6249,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c7e8f15-fec7-4928-8db7-b5761bbc3ff2"
+ "dc0fceb3-b5ba-489b-92c2-17539b29782e"
],
"Accept-Language": [
"en-US"
@@ -6288,13 +6288,13 @@
"11811"
],
"x-ms-request-id": [
- "bf5ffbb2-8f2d-41c7-a9f6-a8bd7d11a476"
+ "cd0e3bfd-0edd-42f8-9dee-23807310e5a6"
],
"x-ms-correlation-request-id": [
- "bf5ffbb2-8f2d-41c7-a9f6-a8bd7d11a476"
+ "cd0e3bfd-0edd-42f8-9dee-23807310e5a6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224251Z:bf5ffbb2-8f2d-41c7-a9f6-a8bd7d11a476"
+ "NORTHCENTRALUS:20200519T190609Z:cd0e3bfd-0edd-42f8-9dee-23807310e5a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6303,7 +6303,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:51 GMT"
+ "Tue, 19 May 2020 19:06:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6312,23 +6312,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e56182d-3da5-40bb-9305-1054f6d9e862"
+ "a3691c67-c713-4b1d-bf15-c7a477c2d5d0"
],
"Accept-Language": [
"en-US"
@@ -6351,13 +6351,13 @@
"11809"
],
"x-ms-request-id": [
- "e205e248-d5e9-447f-9edb-bbcedadd530d"
+ "19c43028-dc38-4e3e-af73-d2d896495d17"
],
"x-ms-correlation-request-id": [
- "e205e248-d5e9-447f-9edb-bbcedadd530d"
+ "19c43028-dc38-4e3e-af73-d2d896495d17"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224252Z:e205e248-d5e9-447f-9edb-bbcedadd530d"
+ "NORTHCENTRALUS:20200519T190609Z:19c43028-dc38-4e3e-af73-d2d896495d17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6366,7 +6366,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:51 GMT"
+ "Tue, 19 May 2020 19:06:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6375,23 +6375,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76610c26-abd4-4c22-9ba1-37b78cae67a8"
+ "61a660c2-514f-48ae-a610-4637cc025dd6"
],
"Accept-Language": [
"en-US"
@@ -6414,13 +6414,13 @@
"11807"
],
"x-ms-request-id": [
- "ae1d2590-d4d7-4d92-8cf4-fb18f5c06e9f"
+ "905d4e92-3b8d-4ea6-929d-2cecc191f89f"
],
"x-ms-correlation-request-id": [
- "ae1d2590-d4d7-4d92-8cf4-fb18f5c06e9f"
+ "905d4e92-3b8d-4ea6-929d-2cecc191f89f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224252Z:ae1d2590-d4d7-4d92-8cf4-fb18f5c06e9f"
+ "NORTHCENTRALUS:20200519T190610Z:905d4e92-3b8d-4ea6-929d-2cecc191f89f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6429,7 +6429,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:51 GMT"
+ "Tue, 19 May 2020 19:06:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6438,23 +6438,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9f95759-e41d-4fb8-b6bd-dc55cab26e21"
+ "8e0f9a12-6218-4578-9799-cd915769445c"
],
"Accept-Language": [
"en-US"
@@ -6477,13 +6477,13 @@
"11805"
],
"x-ms-request-id": [
- "c1ca6e4d-58ba-4b56-b8ac-721948a7db3a"
+ "cee0b957-b1c0-4cb1-b692-4acf1e0b36d3"
],
"x-ms-correlation-request-id": [
- "c1ca6e4d-58ba-4b56-b8ac-721948a7db3a"
+ "cee0b957-b1c0-4cb1-b692-4acf1e0b36d3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224253Z:c1ca6e4d-58ba-4b56-b8ac-721948a7db3a"
+ "NORTHCENTRALUS:20200519T190610Z:cee0b957-b1c0-4cb1-b692-4acf1e0b36d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6492,7 +6492,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:52 GMT"
+ "Tue, 19 May 2020 19:06:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6501,23 +6501,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21f3c381-0b2c-41ae-a943-63e501ffc692"
+ "6ffa1b10-1842-4b1f-9354-ec1e8cc65b09"
],
"Accept-Language": [
"en-US"
@@ -6540,13 +6540,13 @@
"11803"
],
"x-ms-request-id": [
- "0047ae44-dc83-4d19-b1da-787377a98adc"
+ "065a1ad0-32a0-4e7e-b221-2f3084822c29"
],
"x-ms-correlation-request-id": [
- "0047ae44-dc83-4d19-b1da-787377a98adc"
+ "065a1ad0-32a0-4e7e-b221-2f3084822c29"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224253Z:0047ae44-dc83-4d19-b1da-787377a98adc"
+ "NORTHCENTRALUS:20200519T190611Z:065a1ad0-32a0-4e7e-b221-2f3084822c29"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6555,7 +6555,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:52 GMT"
+ "Tue, 19 May 2020 19:06:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6564,23 +6564,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce9b776a-3f55-4f62-8bd5-7bf1f17b279f"
+ "5aeb5d31-3539-489d-96e4-20dc05acb466"
],
"Accept-Language": [
"en-US"
@@ -6603,13 +6603,13 @@
"11801"
],
"x-ms-request-id": [
- "be657461-8f2f-44d6-acaf-e4a6a378f2ac"
+ "8be744ba-8211-4df5-8214-ba36f78dd963"
],
"x-ms-correlation-request-id": [
- "be657461-8f2f-44d6-acaf-e4a6a378f2ac"
+ "8be744ba-8211-4df5-8214-ba36f78dd963"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224253Z:be657461-8f2f-44d6-acaf-e4a6a378f2ac"
+ "NORTHCENTRALUS:20200519T190611Z:8be744ba-8211-4df5-8214-ba36f78dd963"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6618,7 +6618,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:53 GMT"
+ "Tue, 19 May 2020 19:06:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6627,23 +6627,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a433d031-535b-44f6-bd7e-b17d9f500860"
+ "9c1adb14-ecee-432d-858f-4204a2f707ae"
],
"Accept-Language": [
"en-US"
@@ -6666,13 +6666,13 @@
"11799"
],
"x-ms-request-id": [
- "6e65514b-8336-4e94-91a8-4b09ea910d42"
+ "622f38ac-26b8-4574-ae75-bb56669efc01"
],
"x-ms-correlation-request-id": [
- "6e65514b-8336-4e94-91a8-4b09ea910d42"
+ "622f38ac-26b8-4574-ae75-bb56669efc01"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224254Z:6e65514b-8336-4e94-91a8-4b09ea910d42"
+ "NORTHCENTRALUS:20200519T190612Z:622f38ac-26b8-4574-ae75-bb56669efc01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6681,7 +6681,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:53 GMT"
+ "Tue, 19 May 2020 19:06:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6690,23 +6690,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c1d9291-c08e-4f08-a66a-d964eaa91521"
+ "a7619a6d-d482-456d-afa9-78e10fdb852f"
],
"Accept-Language": [
"en-US"
@@ -6729,13 +6729,13 @@
"11797"
],
"x-ms-request-id": [
- "9a4472bc-bee3-4c70-8460-443550d7eb3f"
+ "6fe20fe8-2834-4414-aaec-1e22bbbac014"
],
"x-ms-correlation-request-id": [
- "9a4472bc-bee3-4c70-8460-443550d7eb3f"
+ "6fe20fe8-2834-4414-aaec-1e22bbbac014"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224254Z:9a4472bc-bee3-4c70-8460-443550d7eb3f"
+ "NORTHCENTRALUS:20200519T190612Z:6fe20fe8-2834-4414-aaec-1e22bbbac014"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6744,7 +6744,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:53 GMT"
+ "Tue, 19 May 2020 19:06:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6753,23 +6753,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c06dd48-535e-4ce2-b796-c876b367dff3"
+ "d3990297-7590-488b-87a9-36032cd3f337"
],
"Accept-Language": [
"en-US"
@@ -6792,13 +6792,13 @@
"11795"
],
"x-ms-request-id": [
- "2340c71a-87d6-46d8-8ea8-d65e4eb51d94"
+ "1eb3f8fa-9fae-4088-9501-8633280d5510"
],
"x-ms-correlation-request-id": [
- "2340c71a-87d6-46d8-8ea8-d65e4eb51d94"
+ "1eb3f8fa-9fae-4088-9501-8633280d5510"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224255Z:2340c71a-87d6-46d8-8ea8-d65e4eb51d94"
+ "NORTHCENTRALUS:20200519T190613Z:1eb3f8fa-9fae-4088-9501-8633280d5510"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6807,7 +6807,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:54 GMT"
+ "Tue, 19 May 2020 19:06:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6816,23 +6816,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5af63566-396c-412f-b39e-b2df5e693ef9"
+ "35849ac6-388e-4d91-ab5f-b31e6c222589"
],
"Accept-Language": [
"en-US"
@@ -6855,13 +6855,13 @@
"11793"
],
"x-ms-request-id": [
- "e21285be-04f0-4e78-b163-04a13be5be19"
+ "69b0aead-e3f5-4788-9083-e7dab1892f37"
],
"x-ms-correlation-request-id": [
- "e21285be-04f0-4e78-b163-04a13be5be19"
+ "69b0aead-e3f5-4788-9083-e7dab1892f37"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224255Z:e21285be-04f0-4e78-b163-04a13be5be19"
+ "NORTHCENTRALUS:20200519T190613Z:69b0aead-e3f5-4788-9083-e7dab1892f37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6870,7 +6870,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:54 GMT"
+ "Tue, 19 May 2020 19:06:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6879,23 +6879,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd9e5c7a-ab06-476d-ab64-fff8483f2917"
+ "0fe5233c-525f-472b-a6b7-b4a23e71b3b8"
],
"Accept-Language": [
"en-US"
@@ -6918,13 +6918,13 @@
"11791"
],
"x-ms-request-id": [
- "fbe1641e-1e4b-4e5b-a335-520f1ee93c4b"
+ "73e58017-3925-49c8-b2d6-648bd1a78909"
],
"x-ms-correlation-request-id": [
- "fbe1641e-1e4b-4e5b-a335-520f1ee93c4b"
+ "73e58017-3925-49c8-b2d6-648bd1a78909"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224255Z:fbe1641e-1e4b-4e5b-a335-520f1ee93c4b"
+ "NORTHCENTRALUS:20200519T190613Z:73e58017-3925-49c8-b2d6-648bd1a78909"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6933,7 +6933,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:55 GMT"
+ "Tue, 19 May 2020 19:06:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6942,23 +6942,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecb7c839-4cfc-49e3-b293-2e79b2989065"
+ "47c21345-2667-4e50-9fc4-e0a2e9d8ca5c"
],
"Accept-Language": [
"en-US"
@@ -6981,13 +6981,13 @@
"11789"
],
"x-ms-request-id": [
- "713539fd-b03e-4f1b-a6fa-d1f867a820c8"
+ "3885a9ae-9c7a-4438-b427-feedd31dee4a"
],
"x-ms-correlation-request-id": [
- "713539fd-b03e-4f1b-a6fa-d1f867a820c8"
+ "3885a9ae-9c7a-4438-b427-feedd31dee4a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224256Z:713539fd-b03e-4f1b-a6fa-d1f867a820c8"
+ "NORTHCENTRALUS:20200519T190614Z:3885a9ae-9c7a-4438-b427-feedd31dee4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6996,7 +6996,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:55 GMT"
+ "Tue, 19 May 2020 19:06:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7005,23 +7005,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.7687801Z\",\r\n \"duration\": \"PT36.8874792S\",\r\n \"trackingId\": \"ef142500-013c-4101-8a35-e001b512d517\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4f0600c-4a9f-4f0c-b217-23246ed4eb3d"
+ "668e29e9-e070-4e56-8683-3e49f213a6ac"
],
"Accept-Language": [
"en-US"
@@ -7044,13 +7044,13 @@
"11787"
],
"x-ms-request-id": [
- "38a8ef35-bb24-416f-8816-09f8197e83d6"
+ "a8720572-f96b-4be9-94b6-30e008b3f7e7"
],
"x-ms-correlation-request-id": [
- "38a8ef35-bb24-416f-8816-09f8197e83d6"
+ "a8720572-f96b-4be9-94b6-30e008b3f7e7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224256Z:38a8ef35-bb24-416f-8816-09f8197e83d6"
+ "NORTHCENTRALUS:20200519T190614Z:a8720572-f96b-4be9-94b6-30e008b3f7e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7059,7 +7059,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:55 GMT"
+ "Tue, 19 May 2020 19:06:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7068,23 +7068,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "637ba584-2bcf-4150-a55b-2e329419d0ce"
+ "fc99814f-d2f1-431d-9a8f-affec80a4378"
],
"Accept-Language": [
"en-US"
@@ -7107,13 +7107,13 @@
"11785"
],
"x-ms-request-id": [
- "be197411-6246-41e2-bfc2-296359b027d0"
+ "976544e7-1069-479b-bb0d-ebb5c3aa482f"
],
"x-ms-correlation-request-id": [
- "be197411-6246-41e2-bfc2-296359b027d0"
+ "976544e7-1069-479b-bb0d-ebb5c3aa482f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224257Z:be197411-6246-41e2-bfc2-296359b027d0"
+ "NORTHCENTRALUS:20200519T190615Z:976544e7-1069-479b-bb0d-ebb5c3aa482f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7122,7 +7122,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:56 GMT"
+ "Tue, 19 May 2020 19:06:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7131,23 +7131,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e0d8e881-e8bb-40ba-9b8e-68c03350294b"
+ "f4a2a739-85d4-4eec-9c28-7084c4a01542"
],
"Accept-Language": [
"en-US"
@@ -7170,13 +7170,13 @@
"11783"
],
"x-ms-request-id": [
- "0cd1240d-6138-4267-8bb1-0f3a9f6721e4"
+ "dfaed966-343b-4e4c-9e98-1dae0d505406"
],
"x-ms-correlation-request-id": [
- "0cd1240d-6138-4267-8bb1-0f3a9f6721e4"
+ "dfaed966-343b-4e4c-9e98-1dae0d505406"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224257Z:0cd1240d-6138-4267-8bb1-0f3a9f6721e4"
+ "NORTHCENTRALUS:20200519T190615Z:dfaed966-343b-4e4c-9e98-1dae0d505406"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7185,7 +7185,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:56 GMT"
+ "Tue, 19 May 2020 19:06:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7194,23 +7194,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df9673e8-4fa8-40e7-9017-7b481e2f7dd2"
+ "7acdb473-a75d-4b1f-bf6c-0407d057271e"
],
"Accept-Language": [
"en-US"
@@ -7233,13 +7233,13 @@
"11781"
],
"x-ms-request-id": [
- "0d9556ab-e033-4adb-b54a-04261f3102c2"
+ "cce4d049-ecdf-49fb-92a5-c0d2f03461f9"
],
"x-ms-correlation-request-id": [
- "0d9556ab-e033-4adb-b54a-04261f3102c2"
+ "cce4d049-ecdf-49fb-92a5-c0d2f03461f9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224257Z:0d9556ab-e033-4adb-b54a-04261f3102c2"
+ "NORTHCENTRALUS:20200519T190616Z:cce4d049-ecdf-49fb-92a5-c0d2f03461f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7248,7 +7248,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:57 GMT"
+ "Tue, 19 May 2020 19:06:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7257,23 +7257,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4acdbcc-aba8-4acd-93c5-48fc7a5dd533"
+ "2bf21e10-9324-44e9-a8ce-09b725d45c95"
],
"Accept-Language": [
"en-US"
@@ -7296,13 +7296,13 @@
"11779"
],
"x-ms-request-id": [
- "1ee2b6b5-0e5e-43f4-a905-90412292f7fa"
+ "02a102e9-ede7-4a0f-8d65-3b1e2cc5e0a6"
],
"x-ms-correlation-request-id": [
- "1ee2b6b5-0e5e-43f4-a905-90412292f7fa"
+ "02a102e9-ede7-4a0f-8d65-3b1e2cc5e0a6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224258Z:1ee2b6b5-0e5e-43f4-a905-90412292f7fa"
+ "NORTHCENTRALUS:20200519T190616Z:02a102e9-ede7-4a0f-8d65-3b1e2cc5e0a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7311,7 +7311,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:57 GMT"
+ "Tue, 19 May 2020 19:06:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7320,23 +7320,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af4f6fcc-d1af-43b7-a95a-dc9c6bef5744"
+ "a4bb2f0c-ae84-4825-9a87-411bd91620b2"
],
"Accept-Language": [
"en-US"
@@ -7359,13 +7359,13 @@
"11777"
],
"x-ms-request-id": [
- "f75d0bd6-3dbb-4d53-b461-7f5d0c63a2d8"
+ "29cde1ec-401a-413c-8da5-daaa7b5c6ddf"
],
"x-ms-correlation-request-id": [
- "f75d0bd6-3dbb-4d53-b461-7f5d0c63a2d8"
+ "29cde1ec-401a-413c-8da5-daaa7b5c6ddf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224258Z:f75d0bd6-3dbb-4d53-b461-7f5d0c63a2d8"
+ "NORTHCENTRALUS:20200519T190617Z:29cde1ec-401a-413c-8da5-daaa7b5c6ddf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7374,7 +7374,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:57 GMT"
+ "Tue, 19 May 2020 19:06:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7383,23 +7383,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8404416Z\",\r\n \"duration\": \"PT35.9029606S\",\r\n \"trackingId\": \"6dcbc6f5-228b-4caf-b992-91c5ac136a77\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a63445a-694c-4789-aa99-0883e6121d6f"
+ "8dd7a083-5ccc-43a9-b861-9b5f07cd5aae"
],
"Accept-Language": [
"en-US"
@@ -7422,13 +7422,13 @@
"11775"
],
"x-ms-request-id": [
- "427f40df-df56-4b3d-9bf9-2a7dca7d8a16"
+ "c0b17cbd-6ff8-40f5-adcb-095e8f4ede57"
],
"x-ms-correlation-request-id": [
- "427f40df-df56-4b3d-9bf9-2a7dca7d8a16"
+ "c0b17cbd-6ff8-40f5-adcb-095e8f4ede57"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224259Z:427f40df-df56-4b3d-9bf9-2a7dca7d8a16"
+ "NORTHCENTRALUS:20200519T190617Z:c0b17cbd-6ff8-40f5-adcb-095e8f4ede57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7437,7 +7437,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:59 GMT"
+ "Tue, 19 May 2020 19:06:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7446,23 +7446,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15c1ac2d-feda-4d96-a111-c0ce31c5218b"
+ "2bb90dff-f482-4e29-b820-b85303c30e73"
],
"Accept-Language": [
"en-US"
@@ -7485,13 +7485,13 @@
"11773"
],
"x-ms-request-id": [
- "7d89bfd8-3b21-485b-bcec-6eacca69a59d"
+ "3dcc5b11-a9cc-4161-a766-6d0a6f6e582a"
],
"x-ms-correlation-request-id": [
- "7d89bfd8-3b21-485b-bcec-6eacca69a59d"
+ "3dcc5b11-a9cc-4161-a766-6d0a6f6e582a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224259Z:7d89bfd8-3b21-485b-bcec-6eacca69a59d"
+ "NORTHCENTRALUS:20200519T190618Z:3dcc5b11-a9cc-4161-a766-6d0a6f6e582a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7500,7 +7500,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:59 GMT"
+ "Tue, 19 May 2020 19:06:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7509,23 +7509,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aae92dee-86b6-46e1-9686-024d184ecd67"
+ "a65ca9c9-211a-4dbe-b241-9ea03f78c55b"
],
"Accept-Language": [
"en-US"
@@ -7548,13 +7548,13 @@
"11771"
],
"x-ms-request-id": [
- "c871d9b9-f551-4c35-bc6e-fd038b9d04d4"
+ "a2aae655-2e76-4078-8b8e-6dcd8355e6d7"
],
"x-ms-correlation-request-id": [
- "c871d9b9-f551-4c35-bc6e-fd038b9d04d4"
+ "a2aae655-2e76-4078-8b8e-6dcd8355e6d7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224259Z:c871d9b9-f551-4c35-bc6e-fd038b9d04d4"
+ "NORTHCENTRALUS:20200519T190618Z:a2aae655-2e76-4078-8b8e-6dcd8355e6d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7563,7 +7563,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:59 GMT"
+ "Tue, 19 May 2020 19:06:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7572,23 +7572,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b13063a-c552-46cd-9a67-49f28936c9b6"
+ "45cafb26-4d81-4f87-8826-b2ec2facb9d9"
],
"Accept-Language": [
"en-US"
@@ -7611,13 +7611,13 @@
"11769"
],
"x-ms-request-id": [
- "646305dc-3f1a-4b77-9c5d-963a739e3eea"
+ "20f2758e-5b9f-4f6d-84e4-5b48b20b6331"
],
"x-ms-correlation-request-id": [
- "646305dc-3f1a-4b77-9c5d-963a739e3eea"
+ "20f2758e-5b9f-4f6d-84e4-5b48b20b6331"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224300Z:646305dc-3f1a-4b77-9c5d-963a739e3eea"
+ "NORTHCENTRALUS:20200519T190619Z:20f2758e-5b9f-4f6d-84e4-5b48b20b6331"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7626,7 +7626,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:00 GMT"
+ "Tue, 19 May 2020 19:06:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7635,23 +7635,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ebd216c-2655-443e-ab00-ee20814aca3b"
+ "4455c3d9-b949-4774-8090-e8edad6e7519"
],
"Accept-Language": [
"en-US"
@@ -7674,13 +7674,13 @@
"11767"
],
"x-ms-request-id": [
- "8d600592-fa8f-45ec-8e06-435bc41608a1"
+ "2ce5bd9b-d18b-46c2-bf79-e068a46d9f14"
],
"x-ms-correlation-request-id": [
- "8d600592-fa8f-45ec-8e06-435bc41608a1"
+ "2ce5bd9b-d18b-46c2-bf79-e068a46d9f14"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224300Z:8d600592-fa8f-45ec-8e06-435bc41608a1"
+ "NORTHCENTRALUS:20200519T190619Z:2ce5bd9b-d18b-46c2-bf79-e068a46d9f14"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7689,7 +7689,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:00 GMT"
+ "Tue, 19 May 2020 19:06:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7698,23 +7698,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fdc5d171-feb9-4a3f-ba52-97fe69f61e16"
+ "7116ecbb-91c1-4a67-8c7c-c5517cd41b76"
],
"Accept-Language": [
"en-US"
@@ -7737,13 +7737,13 @@
"11765"
],
"x-ms-request-id": [
- "3afd29e5-d5b0-466a-83f0-795f3bc1a2f4"
+ "f84f0820-dc5d-464e-8388-18b0dd064c44"
],
"x-ms-correlation-request-id": [
- "3afd29e5-d5b0-466a-83f0-795f3bc1a2f4"
+ "f84f0820-dc5d-464e-8388-18b0dd064c44"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224301Z:3afd29e5-d5b0-466a-83f0-795f3bc1a2f4"
+ "NORTHCENTRALUS:20200519T190619Z:f84f0820-dc5d-464e-8388-18b0dd064c44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7752,7 +7752,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:01 GMT"
+ "Tue, 19 May 2020 19:06:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7761,23 +7761,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14154c17-8079-4051-8858-c4f78030f29e"
+ "e65cd655-751c-4bcb-9098-4a667a83c2d4"
],
"Accept-Language": [
"en-US"
@@ -7800,13 +7800,13 @@
"11763"
],
"x-ms-request-id": [
- "a551f6a1-8dd2-4e7b-ac4b-4d4ee566a737"
+ "90a41ae4-a838-4d56-9bef-2d8495e5b8bd"
],
"x-ms-correlation-request-id": [
- "a551f6a1-8dd2-4e7b-ac4b-4d4ee566a737"
+ "90a41ae4-a838-4d56-9bef-2d8495e5b8bd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224301Z:a551f6a1-8dd2-4e7b-ac4b-4d4ee566a737"
+ "NORTHCENTRALUS:20200519T190620Z:90a41ae4-a838-4d56-9bef-2d8495e5b8bd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7815,7 +7815,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:01 GMT"
+ "Tue, 19 May 2020 19:06:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7824,23 +7824,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52858dbe-1716-40a1-afd3-f12f281967ab"
+ "f155a869-f5a2-45d7-b971-81635702a508"
],
"Accept-Language": [
"en-US"
@@ -7863,13 +7863,13 @@
"11761"
],
"x-ms-request-id": [
- "ea577c8e-9fee-4d81-b81f-68d99fea3d65"
+ "74533ca8-0192-46f9-a4a5-23c55b65a5f1"
],
"x-ms-correlation-request-id": [
- "ea577c8e-9fee-4d81-b81f-68d99fea3d65"
+ "74533ca8-0192-46f9-a4a5-23c55b65a5f1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224302Z:ea577c8e-9fee-4d81-b81f-68d99fea3d65"
+ "NORTHCENTRALUS:20200519T190620Z:74533ca8-0192-46f9-a4a5-23c55b65a5f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7878,7 +7878,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:01 GMT"
+ "Tue, 19 May 2020 19:06:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7887,23 +7887,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7242d176-388c-4123-be17-0817532b4037"
+ "af997f9a-ee87-487a-8ccc-5d01e778d0e7"
],
"Accept-Language": [
"en-US"
@@ -7926,13 +7926,13 @@
"11759"
],
"x-ms-request-id": [
- "a3cf7108-0fcf-465d-9327-7f479fe9f785"
+ "2eb14c07-9a2b-42cb-85d5-762f47ed76f7"
],
"x-ms-correlation-request-id": [
- "a3cf7108-0fcf-465d-9327-7f479fe9f785"
+ "2eb14c07-9a2b-42cb-85d5-762f47ed76f7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224302Z:a3cf7108-0fcf-465d-9327-7f479fe9f785"
+ "NORTHCENTRALUS:20200519T190621Z:2eb14c07-9a2b-42cb-85d5-762f47ed76f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7941,7 +7941,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:02 GMT"
+ "Tue, 19 May 2020 19:06:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7950,23 +7950,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d77c6951-5819-42e7-abf0-9f051946284b"
+ "174fe620-875f-4839-baa1-29c06d86df7e"
],
"Accept-Language": [
"en-US"
@@ -7989,13 +7989,13 @@
"11757"
],
"x-ms-request-id": [
- "eaf23eb0-a845-4c0e-ab13-3e4aedee2da3"
+ "2b69cfa1-bbdd-417b-b998-76b2fa7d3797"
],
"x-ms-correlation-request-id": [
- "eaf23eb0-a845-4c0e-ab13-3e4aedee2da3"
+ "2b69cfa1-bbdd-417b-b998-76b2fa7d3797"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224302Z:eaf23eb0-a845-4c0e-ab13-3e4aedee2da3"
+ "NORTHCENTRALUS:20200519T190621Z:2b69cfa1-bbdd-417b-b998-76b2fa7d3797"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8004,7 +8004,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:02 GMT"
+ "Tue, 19 May 2020 19:06:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8013,23 +8013,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fe03e71-fac4-4589-8762-8dfe7756a757"
+ "cd2fe551-d091-488d-b3c5-b27d5db8eeb7"
],
"Accept-Language": [
"en-US"
@@ -8052,13 +8052,13 @@
"11755"
],
"x-ms-request-id": [
- "d71a75f6-a795-4f45-838e-c763f3715915"
+ "bd75b2a5-9e38-4c47-a766-9d8dc720e627"
],
"x-ms-correlation-request-id": [
- "d71a75f6-a795-4f45-838e-c763f3715915"
+ "bd75b2a5-9e38-4c47-a766-9d8dc720e627"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224303Z:d71a75f6-a795-4f45-838e-c763f3715915"
+ "NORTHCENTRALUS:20200519T190622Z:bd75b2a5-9e38-4c47-a766-9d8dc720e627"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8067,7 +8067,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:03 GMT"
+ "Tue, 19 May 2020 19:06:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8076,23 +8076,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79a6e9a4-e29a-4b48-ac58-fa028e07f455"
+ "d20ff673-376c-4e12-b9e4-f895828cac49"
],
"Accept-Language": [
"en-US"
@@ -8115,13 +8115,13 @@
"11753"
],
"x-ms-request-id": [
- "4bd66a89-8df6-44f9-934a-6b9f6c8add7f"
+ "c916f3d6-46e5-4a86-83f5-ad6096178f30"
],
"x-ms-correlation-request-id": [
- "4bd66a89-8df6-44f9-934a-6b9f6c8add7f"
+ "c916f3d6-46e5-4a86-83f5-ad6096178f30"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224303Z:4bd66a89-8df6-44f9-934a-6b9f6c8add7f"
+ "NORTHCENTRALUS:20200519T190622Z:c916f3d6-46e5-4a86-83f5-ad6096178f30"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8130,7 +8130,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:03 GMT"
+ "Tue, 19 May 2020 19:06:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8139,23 +8139,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "adb382a1-973d-4722-a3d4-588adeddd566"
+ "9e369d3d-8f18-4a00-b345-68a370887512"
],
"Accept-Language": [
"en-US"
@@ -8178,13 +8178,13 @@
"11751"
],
"x-ms-request-id": [
- "003f276b-2627-4f71-b6f2-63730162bed7"
+ "a50dc4a5-de8f-4244-aa55-9a37d6a1c337"
],
"x-ms-correlation-request-id": [
- "003f276b-2627-4f71-b6f2-63730162bed7"
+ "a50dc4a5-de8f-4244-aa55-9a37d6a1c337"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224304Z:003f276b-2627-4f71-b6f2-63730162bed7"
+ "NORTHCENTRALUS:20200519T190623Z:a50dc4a5-de8f-4244-aa55-9a37d6a1c337"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8193,7 +8193,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:03 GMT"
+ "Tue, 19 May 2020 19:06:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8202,23 +8202,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "377a9848-4f8c-48ad-9c0f-169b335ce132"
+ "3f1461cf-d899-4158-8ef9-55008ee91c8f"
],
"Accept-Language": [
"en-US"
@@ -8241,13 +8241,13 @@
"11749"
],
"x-ms-request-id": [
- "de8e1366-ce0b-413f-8f1b-aa48c7f5cb4e"
+ "13fe79e7-c096-4bfc-81f2-aecb436e7192"
],
"x-ms-correlation-request-id": [
- "de8e1366-ce0b-413f-8f1b-aa48c7f5cb4e"
+ "13fe79e7-c096-4bfc-81f2-aecb436e7192"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224304Z:de8e1366-ce0b-413f-8f1b-aa48c7f5cb4e"
+ "NORTHCENTRALUS:20200519T190623Z:13fe79e7-c096-4bfc-81f2-aecb436e7192"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8256,7 +8256,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:04 GMT"
+ "Tue, 19 May 2020 19:06:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8265,23 +8265,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b4d2c312-18d7-4d42-af90-f92f9f7d865a"
+ "bfbdcf52-86a2-4d62-a11b-6cee025eda6c"
],
"Accept-Language": [
"en-US"
@@ -8304,13 +8304,13 @@
"11747"
],
"x-ms-request-id": [
- "0699f22f-cd43-418e-9619-87173e622404"
+ "0ed8449d-0dc5-44d5-8d93-83ac83da8047"
],
"x-ms-correlation-request-id": [
- "0699f22f-cd43-418e-9619-87173e622404"
+ "0ed8449d-0dc5-44d5-8d93-83ac83da8047"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224304Z:0699f22f-cd43-418e-9619-87173e622404"
+ "NORTHCENTRALUS:20200519T190624Z:0ed8449d-0dc5-44d5-8d93-83ac83da8047"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8319,7 +8319,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:04 GMT"
+ "Tue, 19 May 2020 19:06:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8328,23 +8328,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22a62cd5-302a-478b-b356-f48c7c917056"
+ "4c4abe30-432d-4d15-ba70-b683f6ceae1f"
],
"Accept-Language": [
"en-US"
@@ -8367,13 +8367,13 @@
"11745"
],
"x-ms-request-id": [
- "dd2a2046-2dce-49f6-9936-af801a0e47a3"
+ "1751a8b7-1b92-4285-a053-79de710472de"
],
"x-ms-correlation-request-id": [
- "dd2a2046-2dce-49f6-9936-af801a0e47a3"
+ "1751a8b7-1b92-4285-a053-79de710472de"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224305Z:dd2a2046-2dce-49f6-9936-af801a0e47a3"
+ "NORTHCENTRALUS:20200519T190624Z:1751a8b7-1b92-4285-a053-79de710472de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8382,7 +8382,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:05 GMT"
+ "Tue, 19 May 2020 19:06:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8391,23 +8391,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "868932bc-c8be-419f-bc3c-dc61afe8bd20"
+ "ddb277e4-ec2b-4e0c-b49c-375c120f5519"
],
"Accept-Language": [
"en-US"
@@ -8430,13 +8430,13 @@
"11743"
],
"x-ms-request-id": [
- "46810c05-5dcc-4886-bfec-8b5a4ae39ccf"
+ "528f15bf-7be1-45a8-9365-12df35e3c652"
],
"x-ms-correlation-request-id": [
- "46810c05-5dcc-4886-bfec-8b5a4ae39ccf"
+ "528f15bf-7be1-45a8-9365-12df35e3c652"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224305Z:46810c05-5dcc-4886-bfec-8b5a4ae39ccf"
+ "NORTHCENTRALUS:20200519T190624Z:528f15bf-7be1-45a8-9365-12df35e3c652"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8445,7 +8445,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:05 GMT"
+ "Tue, 19 May 2020 19:06:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8454,23 +8454,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.5486132Z\",\r\n \"duration\": \"PT45.6673123S\",\r\n \"trackingId\": \"6b09b464-b860-4a08-98f4-80474476b894\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd80d518-d3d2-4c9f-828a-3cf4bb2753f3"
+ "2a5bc797-eb62-4404-9a05-99b42cd627fa"
],
"Accept-Language": [
"en-US"
@@ -8493,13 +8493,13 @@
"11741"
],
"x-ms-request-id": [
- "2feb9230-f870-4c71-b447-74f85aadff45"
+ "dcbdba2c-6ccc-4795-b0a2-723122e9b8f4"
],
"x-ms-correlation-request-id": [
- "2feb9230-f870-4c71-b447-74f85aadff45"
+ "dcbdba2c-6ccc-4795-b0a2-723122e9b8f4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224306Z:2feb9230-f870-4c71-b447-74f85aadff45"
+ "NORTHCENTRALUS:20200519T190625Z:dcbdba2c-6ccc-4795-b0a2-723122e9b8f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8508,7 +8508,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:05 GMT"
+ "Tue, 19 May 2020 19:06:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8517,23 +8517,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd6616aa-c457-42c5-b7d6-4b8ea2c789ff"
+ "a189ad6d-22c7-4516-ad72-f030e81bf483"
],
"Accept-Language": [
"en-US"
@@ -8556,13 +8556,13 @@
"11739"
],
"x-ms-request-id": [
- "8314e32b-6382-4d11-b0c5-fd3dcdb93483"
+ "627628ef-715e-4b7c-b444-6df4c61865f0"
],
"x-ms-correlation-request-id": [
- "8314e32b-6382-4d11-b0c5-fd3dcdb93483"
+ "627628ef-715e-4b7c-b444-6df4c61865f0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224306Z:8314e32b-6382-4d11-b0c5-fd3dcdb93483"
+ "NORTHCENTRALUS:20200519T190625Z:627628ef-715e-4b7c-b444-6df4c61865f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8571,7 +8571,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:06 GMT"
+ "Tue, 19 May 2020 19:06:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8580,23 +8580,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f90e1a94-d5df-4ee0-819d-e03502dff276"
+ "dc132afa-8000-4321-bb3f-9f06139e32c8"
],
"Accept-Language": [
"en-US"
@@ -8619,13 +8619,13 @@
"11737"
],
"x-ms-request-id": [
- "90059a20-8e64-4d9b-86a8-64712646e867"
+ "2a1ac91e-b9cd-4caf-b9bf-c8d398cbd2c2"
],
"x-ms-correlation-request-id": [
- "90059a20-8e64-4d9b-86a8-64712646e867"
+ "2a1ac91e-b9cd-4caf-b9bf-c8d398cbd2c2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224306Z:90059a20-8e64-4d9b-86a8-64712646e867"
+ "NORTHCENTRALUS:20200519T190626Z:2a1ac91e-b9cd-4caf-b9bf-c8d398cbd2c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8634,7 +8634,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:06 GMT"
+ "Tue, 19 May 2020 19:06:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8643,23 +8643,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "281c5a72-f49e-4d35-8739-37748b882ec8"
+ "9dcbea67-b9d7-4e19-9678-abc9f7a0548b"
],
"Accept-Language": [
"en-US"
@@ -8682,13 +8682,13 @@
"11735"
],
"x-ms-request-id": [
- "9f598d40-bf40-4450-b145-a0a62f836d0a"
+ "22c2352c-9f54-4e81-bed6-d2221aed68ad"
],
"x-ms-correlation-request-id": [
- "9f598d40-bf40-4450-b145-a0a62f836d0a"
+ "22c2352c-9f54-4e81-bed6-d2221aed68ad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224307Z:9f598d40-bf40-4450-b145-a0a62f836d0a"
+ "NORTHCENTRALUS:20200519T190626Z:22c2352c-9f54-4e81-bed6-d2221aed68ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8697,7 +8697,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:07 GMT"
+ "Tue, 19 May 2020 19:06:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8706,23 +8706,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0baf6f0d-6fe2-4cae-b25f-e067ea156f07"
+ "928a0636-26a4-4363-8ede-f31d4f46e4c9"
],
"Accept-Language": [
"en-US"
@@ -8745,13 +8745,13 @@
"11733"
],
"x-ms-request-id": [
- "9a369d05-ea50-43ec-8908-b00866886909"
+ "b2f5c6fe-379e-402c-b9dd-f3aab754fc8c"
],
"x-ms-correlation-request-id": [
- "9a369d05-ea50-43ec-8908-b00866886909"
+ "b2f5c6fe-379e-402c-b9dd-f3aab754fc8c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224307Z:9a369d05-ea50-43ec-8908-b00866886909"
+ "NORTHCENTRALUS:20200519T190627Z:b2f5c6fe-379e-402c-b9dd-f3aab754fc8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8760,7 +8760,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:07 GMT"
+ "Tue, 19 May 2020 19:06:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8769,23 +8769,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c85331ee-7bb5-42dc-8bfe-0b49f2bd17c6"
+ "1e1d5010-e443-4c44-a089-682bc1311990"
],
"Accept-Language": [
"en-US"
@@ -8808,13 +8808,13 @@
"11731"
],
"x-ms-request-id": [
- "50099942-304b-4a05-b458-de655694b643"
+ "388bb008-2ff9-4d42-aa91-8523825e6a5b"
],
"x-ms-correlation-request-id": [
- "50099942-304b-4a05-b458-de655694b643"
+ "388bb008-2ff9-4d42-aa91-8523825e6a5b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224308Z:50099942-304b-4a05-b458-de655694b643"
+ "NORTHCENTRALUS:20200519T190627Z:388bb008-2ff9-4d42-aa91-8523825e6a5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8823,7 +8823,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:07 GMT"
+ "Tue, 19 May 2020 19:06:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8832,23 +8832,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.7930634Z\",\r\n \"duration\": \"PT44.8555824S\",\r\n \"trackingId\": \"30c5972a-f541-4a87-81dd-fd36513f2a29\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2127d19-e309-4660-80f6-afe64b17a118"
+ "0609c6d9-e8e6-47b7-a114-8e583ba8902c"
],
"Accept-Language": [
"en-US"
@@ -8871,13 +8871,13 @@
"11729"
],
"x-ms-request-id": [
- "bccff0f7-670b-4a4d-9ffc-7141d2ea6647"
+ "f493b24e-d6a7-426c-8bfb-38dcc3209c1f"
],
"x-ms-correlation-request-id": [
- "bccff0f7-670b-4a4d-9ffc-7141d2ea6647"
+ "f493b24e-d6a7-426c-8bfb-38dcc3209c1f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224308Z:bccff0f7-670b-4a4d-9ffc-7141d2ea6647"
+ "NORTHCENTRALUS:20200519T190627Z:f493b24e-d6a7-426c-8bfb-38dcc3209c1f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8886,7 +8886,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:08 GMT"
+ "Tue, 19 May 2020 19:06:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8895,23 +8895,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9df4413a-a20c-4c46-8b67-f5306d0038f8"
+ "3ddd06fc-1d0b-472b-8ade-8f186b969275"
],
"Accept-Language": [
"en-US"
@@ -8934,13 +8934,13 @@
"11727"
],
"x-ms-request-id": [
- "5e803b0e-5a6a-4498-82d8-f15e5b51b98e"
+ "8a2f56d4-8ced-47f1-97a5-55a6d161b01c"
],
"x-ms-correlation-request-id": [
- "5e803b0e-5a6a-4498-82d8-f15e5b51b98e"
+ "8a2f56d4-8ced-47f1-97a5-55a6d161b01c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224309Z:5e803b0e-5a6a-4498-82d8-f15e5b51b98e"
+ "NORTHCENTRALUS:20200519T190628Z:8a2f56d4-8ced-47f1-97a5-55a6d161b01c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8949,7 +8949,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:08 GMT"
+ "Tue, 19 May 2020 19:06:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8958,23 +8958,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b3b1eed-4a4d-419b-b2dc-ef9d9f2585ee"
+ "a02af3e5-8f1a-458c-b36d-131301a98d99"
],
"Accept-Language": [
"en-US"
@@ -8997,13 +8997,13 @@
"11725"
],
"x-ms-request-id": [
- "74088403-af6c-47df-8ffa-1b8db0018ef2"
+ "316a2ae5-5509-4f74-9c43-51e29f7a4048"
],
"x-ms-correlation-request-id": [
- "74088403-af6c-47df-8ffa-1b8db0018ef2"
+ "316a2ae5-5509-4f74-9c43-51e29f7a4048"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224309Z:74088403-af6c-47df-8ffa-1b8db0018ef2"
+ "NORTHCENTRALUS:20200519T190628Z:316a2ae5-5509-4f74-9c43-51e29f7a4048"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9012,7 +9012,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:09 GMT"
+ "Tue, 19 May 2020 19:06:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9021,23 +9021,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c0414693-926f-4ed0-8d7d-6ca4d1ccda37"
+ "e78b0e64-1b54-462b-bfa2-61f95e84ab4e"
],
"Accept-Language": [
"en-US"
@@ -9060,13 +9060,13 @@
"11723"
],
"x-ms-request-id": [
- "5b0e8878-eb05-4c1d-94f6-7c941a3f9d8e"
+ "5c140bf4-bce3-4cd2-b2a8-9101681318ed"
],
"x-ms-correlation-request-id": [
- "5b0e8878-eb05-4c1d-94f6-7c941a3f9d8e"
+ "5c140bf4-bce3-4cd2-b2a8-9101681318ed"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224309Z:5b0e8878-eb05-4c1d-94f6-7c941a3f9d8e"
+ "NORTHCENTRALUS:20200519T190629Z:5c140bf4-bce3-4cd2-b2a8-9101681318ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9075,7 +9075,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:09 GMT"
+ "Tue, 19 May 2020 19:06:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9084,23 +9084,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a2a58bc-b6a1-48c7-939c-f9d92f96ccca"
+ "9e246eb3-5a7f-42b9-819d-f40d96c2b7e8"
],
"Accept-Language": [
"en-US"
@@ -9123,13 +9123,13 @@
"11721"
],
"x-ms-request-id": [
- "a70fc779-f3c8-446d-8f84-2790b4ae82e7"
+ "68a55857-9e40-4e46-be18-9e5c6b9405e0"
],
"x-ms-correlation-request-id": [
- "a70fc779-f3c8-446d-8f84-2790b4ae82e7"
+ "68a55857-9e40-4e46-be18-9e5c6b9405e0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224310Z:a70fc779-f3c8-446d-8f84-2790b4ae82e7"
+ "NORTHCENTRALUS:20200519T190629Z:68a55857-9e40-4e46-be18-9e5c6b9405e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9138,7 +9138,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:09 GMT"
+ "Tue, 19 May 2020 19:06:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9147,23 +9147,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de7863c0-a038-44d5-8fd9-259c0cb408cf"
+ "707b0fd2-5e7f-443f-89d4-369fe3b107e1"
],
"Accept-Language": [
"en-US"
@@ -9186,13 +9186,13 @@
"11719"
],
"x-ms-request-id": [
- "42282281-b4c7-4f4d-a79b-3e7a24cad37e"
+ "4e2099a6-aac8-477f-95d9-84c2dc01f1d2"
],
"x-ms-correlation-request-id": [
- "42282281-b4c7-4f4d-a79b-3e7a24cad37e"
+ "4e2099a6-aac8-477f-95d9-84c2dc01f1d2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224310Z:42282281-b4c7-4f4d-a79b-3e7a24cad37e"
+ "NORTHCENTRALUS:20200519T190630Z:4e2099a6-aac8-477f-95d9-84c2dc01f1d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9201,7 +9201,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:10 GMT"
+ "Tue, 19 May 2020 19:06:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9210,23 +9210,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30f3370c-075c-4b05-ba86-2f0fbf77b997"
+ "14b70387-325f-408a-8b10-4512a19eab61"
],
"Accept-Language": [
"en-US"
@@ -9249,13 +9249,13 @@
"11717"
],
"x-ms-request-id": [
- "6fa48d88-4222-4fa8-97d7-c43d9002c887"
+ "f82690af-b281-48aa-a777-eb9edaae19ac"
],
"x-ms-correlation-request-id": [
- "6fa48d88-4222-4fa8-97d7-c43d9002c887"
+ "f82690af-b281-48aa-a777-eb9edaae19ac"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224311Z:6fa48d88-4222-4fa8-97d7-c43d9002c887"
+ "NORTHCENTRALUS:20200519T190630Z:f82690af-b281-48aa-a777-eb9edaae19ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9264,7 +9264,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:10 GMT"
+ "Tue, 19 May 2020 19:06:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9273,23 +9273,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77ff3d11-50d0-44de-98db-2a70059e6ed1"
+ "e37a0690-9f7b-4d20-88ae-49648bbae385"
],
"Accept-Language": [
"en-US"
@@ -9312,13 +9312,13 @@
"11715"
],
"x-ms-request-id": [
- "b0d5abbf-8d02-40e0-a067-f6214f06f8d6"
+ "ad949784-162a-42fe-ba79-1bde9374e513"
],
"x-ms-correlation-request-id": [
- "b0d5abbf-8d02-40e0-a067-f6214f06f8d6"
+ "ad949784-162a-42fe-ba79-1bde9374e513"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224311Z:b0d5abbf-8d02-40e0-a067-f6214f06f8d6"
+ "NORTHCENTRALUS:20200519T190630Z:ad949784-162a-42fe-ba79-1bde9374e513"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9327,7 +9327,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:11 GMT"
+ "Tue, 19 May 2020 19:06:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9336,23 +9336,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c19fcac-9930-4bab-be33-7bec24364e22"
+ "986e83dc-3868-4717-ab28-2b6f132d5547"
],
"Accept-Language": [
"en-US"
@@ -9375,13 +9375,13 @@
"11713"
],
"x-ms-request-id": [
- "623fef78-c120-438b-a6b5-5f5f63a6f0bc"
+ "ae374132-2a67-41d9-a959-8801d7f3d3e0"
],
"x-ms-correlation-request-id": [
- "623fef78-c120-438b-a6b5-5f5f63a6f0bc"
+ "ae374132-2a67-41d9-a959-8801d7f3d3e0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224311Z:623fef78-c120-438b-a6b5-5f5f63a6f0bc"
+ "NORTHCENTRALUS:20200519T190631Z:ae374132-2a67-41d9-a959-8801d7f3d3e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9390,7 +9390,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:11 GMT"
+ "Tue, 19 May 2020 19:06:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9399,23 +9399,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95a408b0-f269-4638-9681-87ed76e91c29"
+ "c33e5de8-0219-484d-aa81-a27e39690c6e"
],
"Accept-Language": [
"en-US"
@@ -9438,13 +9438,13 @@
"11711"
],
"x-ms-request-id": [
- "18e2e35f-1b4d-460b-8d90-345d4bd6167b"
+ "1cc0c620-6937-44b7-9e3c-3836275c4037"
],
"x-ms-correlation-request-id": [
- "18e2e35f-1b4d-460b-8d90-345d4bd6167b"
+ "1cc0c620-6937-44b7-9e3c-3836275c4037"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224312Z:18e2e35f-1b4d-460b-8d90-345d4bd6167b"
+ "NORTHCENTRALUS:20200519T190631Z:1cc0c620-6937-44b7-9e3c-3836275c4037"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9453,7 +9453,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:11 GMT"
+ "Tue, 19 May 2020 19:06:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9462,23 +9462,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c0f5e8a-1a3d-4185-ada1-ed1a2d2d259d"
+ "cf1ef669-0264-49f1-8159-dd2221389961"
],
"Accept-Language": [
"en-US"
@@ -9501,13 +9501,13 @@
"11709"
],
"x-ms-request-id": [
- "3e752f59-9932-4b69-856d-0411727181f4"
+ "368a4576-b62f-4e19-a2aa-268ab61bf0d4"
],
"x-ms-correlation-request-id": [
- "3e752f59-9932-4b69-856d-0411727181f4"
+ "368a4576-b62f-4e19-a2aa-268ab61bf0d4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224312Z:3e752f59-9932-4b69-856d-0411727181f4"
+ "NORTHCENTRALUS:20200519T190632Z:368a4576-b62f-4e19-a2aa-268ab61bf0d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9516,7 +9516,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:12 GMT"
+ "Tue, 19 May 2020 19:06:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9525,23 +9525,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a7b3540-13bd-4eb0-a3d7-391fa7d9b045"
+ "19085352-c0e9-420c-9243-fdf5aa429423"
],
"Accept-Language": [
"en-US"
@@ -9564,13 +9564,13 @@
"11707"
],
"x-ms-request-id": [
- "42de6208-2e13-4fd8-8c86-aef951524d87"
+ "7655c1f3-4776-431e-8983-d2d3d56d36ba"
],
"x-ms-correlation-request-id": [
- "42de6208-2e13-4fd8-8c86-aef951524d87"
+ "7655c1f3-4776-431e-8983-d2d3d56d36ba"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224313Z:42de6208-2e13-4fd8-8c86-aef951524d87"
+ "NORTHCENTRALUS:20200519T190632Z:7655c1f3-4776-431e-8983-d2d3d56d36ba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9579,7 +9579,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:12 GMT"
+ "Tue, 19 May 2020 19:06:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9588,23 +9588,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b92a399-c6a5-4128-860b-9dad8f471927"
+ "dda1f748-ba4f-4d8b-8488-68e3fabada64"
],
"Accept-Language": [
"en-US"
@@ -9627,13 +9627,13 @@
"11705"
],
"x-ms-request-id": [
- "a8910f09-d8dd-43d0-878c-13a6941fe296"
+ "1e540735-8a49-4a7c-85b1-b3a7a4a855a0"
],
"x-ms-correlation-request-id": [
- "a8910f09-d8dd-43d0-878c-13a6941fe296"
+ "1e540735-8a49-4a7c-85b1-b3a7a4a855a0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224313Z:a8910f09-d8dd-43d0-878c-13a6941fe296"
+ "NORTHCENTRALUS:20200519T190633Z:1e540735-8a49-4a7c-85b1-b3a7a4a855a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9642,7 +9642,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:13 GMT"
+ "Tue, 19 May 2020 19:06:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9651,23 +9651,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54e63328-f817-47b5-8b02-4d0321242fe6"
+ "a1b64953-63f7-4a95-b20e-39585eb3f419"
],
"Accept-Language": [
"en-US"
@@ -9690,13 +9690,13 @@
"11703"
],
"x-ms-request-id": [
- "90dff7a1-fd67-44e1-97e1-1c996a5596ee"
+ "c3bb1ba7-eb3e-467d-9f5e-a5a9302b4f5f"
],
"x-ms-correlation-request-id": [
- "90dff7a1-fd67-44e1-97e1-1c996a5596ee"
+ "c3bb1ba7-eb3e-467d-9f5e-a5a9302b4f5f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224313Z:90dff7a1-fd67-44e1-97e1-1c996a5596ee"
+ "NORTHCENTRALUS:20200519T190633Z:c3bb1ba7-eb3e-467d-9f5e-a5a9302b4f5f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9705,7 +9705,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:13 GMT"
+ "Tue, 19 May 2020 19:06:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9714,23 +9714,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51226a1f-addf-40c0-8eae-ea39ec392a2b"
+ "ed4cc01d-eab4-4907-b6a9-1c49defdb0d6"
],
"Accept-Language": [
"en-US"
@@ -9753,13 +9753,13 @@
"11701"
],
"x-ms-request-id": [
- "164a8380-84dc-488c-85ec-aa25dbfdc137"
+ "cc67cec4-7f20-489b-be16-bfc38d3ff398"
],
"x-ms-correlation-request-id": [
- "164a8380-84dc-488c-85ec-aa25dbfdc137"
+ "cc67cec4-7f20-489b-be16-bfc38d3ff398"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224314Z:164a8380-84dc-488c-85ec-aa25dbfdc137"
+ "NORTHCENTRALUS:20200519T190634Z:cc67cec4-7f20-489b-be16-bfc38d3ff398"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9768,7 +9768,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:13 GMT"
+ "Tue, 19 May 2020 19:06:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9777,23 +9777,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4ca0b3d-5578-4ca9-b671-226db4b508e4"
+ "10596b0c-79d3-4e26-ad08-4effd26c1b27"
],
"Accept-Language": [
"en-US"
@@ -9816,13 +9816,13 @@
"11699"
],
"x-ms-request-id": [
- "27fae4d0-f0f4-4092-b2c2-c2b98e70639b"
+ "3ad8d0ca-2f09-44e3-9db0-125ab876c56d"
],
"x-ms-correlation-request-id": [
- "27fae4d0-f0f4-4092-b2c2-c2b98e70639b"
+ "3ad8d0ca-2f09-44e3-9db0-125ab876c56d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224314Z:27fae4d0-f0f4-4092-b2c2-c2b98e70639b"
+ "NORTHCENTRALUS:20200519T190634Z:3ad8d0ca-2f09-44e3-9db0-125ab876c56d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9831,7 +9831,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:14 GMT"
+ "Tue, 19 May 2020 19:06:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9840,23 +9840,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8171ddb6-225c-4184-afac-7ac84e280a70"
+ "f77c84c5-0ca0-4344-b1fb-b3db70716e69"
],
"Accept-Language": [
"en-US"
@@ -9879,13 +9879,13 @@
"11697"
],
"x-ms-request-id": [
- "af8c0887-ebd2-49e1-aac5-4fb978bacaf4"
+ "f4bd6e2a-ddec-404a-b57e-cc8184107cb5"
],
"x-ms-correlation-request-id": [
- "af8c0887-ebd2-49e1-aac5-4fb978bacaf4"
+ "f4bd6e2a-ddec-404a-b57e-cc8184107cb5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224315Z:af8c0887-ebd2-49e1-aac5-4fb978bacaf4"
+ "NORTHCENTRALUS:20200519T190634Z:f4bd6e2a-ddec-404a-b57e-cc8184107cb5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9894,7 +9894,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:14 GMT"
+ "Tue, 19 May 2020 19:06:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9903,23 +9903,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1626ed7-235d-4538-ab1c-07459b9dddf1"
+ "4bd1b36e-2bec-4441-9156-80c9f234fcc2"
],
"Accept-Language": [
"en-US"
@@ -9942,13 +9942,13 @@
"11695"
],
"x-ms-request-id": [
- "0d8b462c-4fcc-44ec-b56e-241366d80d4d"
+ "e13b77cd-29dc-4a68-a5dc-d0785df94ff4"
],
"x-ms-correlation-request-id": [
- "0d8b462c-4fcc-44ec-b56e-241366d80d4d"
+ "e13b77cd-29dc-4a68-a5dc-d0785df94ff4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224315Z:0d8b462c-4fcc-44ec-b56e-241366d80d4d"
+ "NORTHCENTRALUS:20200519T190635Z:e13b77cd-29dc-4a68-a5dc-d0785df94ff4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9957,7 +9957,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:15 GMT"
+ "Tue, 19 May 2020 19:06:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9966,23 +9966,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f3ff54c-de9f-432c-8090-05355713f59d"
+ "d4da3d3d-9de1-47ec-8bf6-4ad86bb44664"
],
"Accept-Language": [
"en-US"
@@ -10005,13 +10005,13 @@
"11693"
],
"x-ms-request-id": [
- "d1c0162a-4744-42d0-be89-d22096f2f238"
+ "6c63be07-09b9-48e6-a85f-f5eab076e159"
],
"x-ms-correlation-request-id": [
- "d1c0162a-4744-42d0-be89-d22096f2f238"
+ "6c63be07-09b9-48e6-a85f-f5eab076e159"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224316Z:d1c0162a-4744-42d0-be89-d22096f2f238"
+ "NORTHCENTRALUS:20200519T190635Z:6c63be07-09b9-48e6-a85f-f5eab076e159"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10020,7 +10020,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:15 GMT"
+ "Tue, 19 May 2020 19:06:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10029,23 +10029,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ae1f0d4-675d-4a73-ba8b-1578bef370d1"
+ "8f6ac71f-f2d1-4260-abc8-841e1da5e305"
],
"Accept-Language": [
"en-US"
@@ -10068,13 +10068,13 @@
"11691"
],
"x-ms-request-id": [
- "1ec36927-b5ef-4c5b-9b11-eb1fe3de7664"
+ "96de3b9d-7b20-48e6-9fad-d0baea87cf21"
],
"x-ms-correlation-request-id": [
- "1ec36927-b5ef-4c5b-9b11-eb1fe3de7664"
+ "96de3b9d-7b20-48e6-9fad-d0baea87cf21"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224316Z:1ec36927-b5ef-4c5b-9b11-eb1fe3de7664"
+ "NORTHCENTRALUS:20200519T190636Z:96de3b9d-7b20-48e6-9fad-d0baea87cf21"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10083,7 +10083,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:15 GMT"
+ "Tue, 19 May 2020 19:06:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10092,23 +10092,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5186eb38-f9b8-44a2-b729-626b2d8a8b8f"
+ "1ab89f95-cb5f-4119-a022-d68cf5edafc8"
],
"Accept-Language": [
"en-US"
@@ -10131,13 +10131,13 @@
"11689"
],
"x-ms-request-id": [
- "44b3bd51-095f-4df8-81d9-304946555bb8"
+ "f4097d2a-ff79-4ab0-a6b7-588f41835e98"
],
"x-ms-correlation-request-id": [
- "44b3bd51-095f-4df8-81d9-304946555bb8"
+ "f4097d2a-ff79-4ab0-a6b7-588f41835e98"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224316Z:44b3bd51-095f-4df8-81d9-304946555bb8"
+ "NORTHCENTRALUS:20200519T190636Z:f4097d2a-ff79-4ab0-a6b7-588f41835e98"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10146,7 +10146,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:16 GMT"
+ "Tue, 19 May 2020 19:06:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10155,23 +10155,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c39e8199-3900-4825-ab3b-dc9dc76d39b9"
+ "36aa57ac-b401-47cb-b6fd-ca5ad9ccca57"
],
"Accept-Language": [
"en-US"
@@ -10194,13 +10194,13 @@
"11687"
],
"x-ms-request-id": [
- "c59a8c28-beb3-4501-a954-270229276cd2"
+ "7b4846a5-425f-4fbf-8db4-6f986cf8b3b8"
],
"x-ms-correlation-request-id": [
- "c59a8c28-beb3-4501-a954-270229276cd2"
+ "7b4846a5-425f-4fbf-8db4-6f986cf8b3b8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224317Z:c59a8c28-beb3-4501-a954-270229276cd2"
+ "NORTHCENTRALUS:20200519T190637Z:7b4846a5-425f-4fbf-8db4-6f986cf8b3b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10209,7 +10209,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:16 GMT"
+ "Tue, 19 May 2020 19:06:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10218,23 +10218,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71d0f1a1-a47a-4169-a8ef-bc35e3b252f2"
+ "fd6b17ce-c594-4706-872a-6fb4afcb6437"
],
"Accept-Language": [
"en-US"
@@ -10257,13 +10257,13 @@
"11685"
],
"x-ms-request-id": [
- "783486c0-f2de-4706-9a74-66dc2a762597"
+ "ea412102-e2a2-4ff8-876f-d290675118df"
],
"x-ms-correlation-request-id": [
- "783486c0-f2de-4706-9a74-66dc2a762597"
+ "ea412102-e2a2-4ff8-876f-d290675118df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224317Z:783486c0-f2de-4706-9a74-66dc2a762597"
+ "NORTHCENTRALUS:20200519T190637Z:ea412102-e2a2-4ff8-876f-d290675118df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10272,7 +10272,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:17 GMT"
+ "Tue, 19 May 2020 19:06:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10281,23 +10281,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b9a8101-f338-4ecd-ae44-3cac36f77895"
+ "2eca6add-bca8-4b1d-a2b2-b6ba2ceec3ce"
],
"Accept-Language": [
"en-US"
@@ -10320,13 +10320,13 @@
"11683"
],
"x-ms-request-id": [
- "3af8dc75-5466-4d86-a429-899985363f86"
+ "de458df4-66f7-48ab-895b-9a9658fac9ac"
],
"x-ms-correlation-request-id": [
- "3af8dc75-5466-4d86-a429-899985363f86"
+ "de458df4-66f7-48ab-895b-9a9658fac9ac"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224318Z:3af8dc75-5466-4d86-a429-899985363f86"
+ "NORTHCENTRALUS:20200519T190637Z:de458df4-66f7-48ab-895b-9a9658fac9ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10335,7 +10335,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:17 GMT"
+ "Tue, 19 May 2020 19:06:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10344,23 +10344,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca6c0aa4-a048-441d-a180-a4f84eb17fa2"
+ "6f0fb619-64d2-414f-8c97-23c29f05ac0e"
],
"Accept-Language": [
"en-US"
@@ -10383,13 +10383,13 @@
"11681"
],
"x-ms-request-id": [
- "18c4bcbb-0e55-4c03-8557-5b39ae36d44c"
+ "878bddd8-2ad2-4ea2-ab2b-190213ddd7df"
],
"x-ms-correlation-request-id": [
- "18c4bcbb-0e55-4c03-8557-5b39ae36d44c"
+ "878bddd8-2ad2-4ea2-ab2b-190213ddd7df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224318Z:18c4bcbb-0e55-4c03-8557-5b39ae36d44c"
+ "NORTHCENTRALUS:20200519T190638Z:878bddd8-2ad2-4ea2-ab2b-190213ddd7df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10398,7 +10398,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:17 GMT"
+ "Tue, 19 May 2020 19:06:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10407,23 +10407,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "053ad021-0517-4f79-aea0-c41ce68b2220"
+ "cd391499-71ef-407b-88d6-572fc28dc486"
],
"Accept-Language": [
"en-US"
@@ -10446,13 +10446,13 @@
"11679"
],
"x-ms-request-id": [
- "ebd1e6b7-941d-4951-ac3f-bbe0dc4f5520"
+ "981ed08a-f53f-4691-aa3a-0dfa306ee76e"
],
"x-ms-correlation-request-id": [
- "ebd1e6b7-941d-4951-ac3f-bbe0dc4f5520"
+ "981ed08a-f53f-4691-aa3a-0dfa306ee76e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224318Z:ebd1e6b7-941d-4951-ac3f-bbe0dc4f5520"
+ "NORTHCENTRALUS:20200519T190638Z:981ed08a-f53f-4691-aa3a-0dfa306ee76e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10461,7 +10461,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:18 GMT"
+ "Tue, 19 May 2020 19:06:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10470,23 +10470,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b95fdc51-794f-41e6-b96a-79ef43f2eb11"
+ "90f0e094-2ea0-4dc4-b36c-266ba7243643"
],
"Accept-Language": [
"en-US"
@@ -10509,13 +10509,13 @@
"11677"
],
"x-ms-request-id": [
- "a161116d-f9aa-4708-bc5d-3238c13ae7a4"
+ "1faea24d-db05-4718-b33b-f92e4d46e455"
],
"x-ms-correlation-request-id": [
- "a161116d-f9aa-4708-bc5d-3238c13ae7a4"
+ "1faea24d-db05-4718-b33b-f92e4d46e455"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224319Z:a161116d-f9aa-4708-bc5d-3238c13ae7a4"
+ "NORTHCENTRALUS:20200519T190639Z:1faea24d-db05-4718-b33b-f92e4d46e455"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10524,7 +10524,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:18 GMT"
+ "Tue, 19 May 2020 19:06:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10533,23 +10533,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f84452e4-e9c0-4659-800b-b9f6068256fb"
+ "fb64a017-f466-4d49-959e-8b05a56d2486"
],
"Accept-Language": [
"en-US"
@@ -10572,13 +10572,13 @@
"11675"
],
"x-ms-request-id": [
- "fcd54e3d-cbd1-4db8-92f1-5b7f3fc3417b"
+ "4e4d332f-289d-4f4e-bf50-b03683e03528"
],
"x-ms-correlation-request-id": [
- "fcd54e3d-cbd1-4db8-92f1-5b7f3fc3417b"
+ "4e4d332f-289d-4f4e-bf50-b03683e03528"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224319Z:fcd54e3d-cbd1-4db8-92f1-5b7f3fc3417b"
+ "NORTHCENTRALUS:20200519T190639Z:4e4d332f-289d-4f4e-bf50-b03683e03528"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10587,7 +10587,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:19 GMT"
+ "Tue, 19 May 2020 19:06:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10596,23 +10596,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.4743613Z\",\r\n \"duration\": \"PT54.5368803S\",\r\n \"trackingId\": \"03290621-b54e-47a7-9c33-3b05f7d5451c\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3bd6c32-370f-4a4d-833e-6da829924a03"
+ "55c2e293-eca9-4a04-ad5e-9fdeb0a4c29e"
],
"Accept-Language": [
"en-US"
@@ -10635,13 +10635,13 @@
"11673"
],
"x-ms-request-id": [
- "7d7f13f1-a39f-46e3-a43a-6010b830fcad"
+ "715d8a61-8209-44a2-bead-ba5c861c823c"
],
"x-ms-correlation-request-id": [
- "7d7f13f1-a39f-46e3-a43a-6010b830fcad"
+ "715d8a61-8209-44a2-bead-ba5c861c823c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224320Z:7d7f13f1-a39f-46e3-a43a-6010b830fcad"
+ "NORTHCENTRALUS:20200519T190640Z:715d8a61-8209-44a2-bead-ba5c861c823c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10650,7 +10650,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:19 GMT"
+ "Tue, 19 May 2020 19:06:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10665,17 +10665,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7394b403-a708-4911-8407-30dae4bd5606"
+ "ff306135-93f6-451f-84d7-c7130ac617c3"
],
"Accept-Language": [
"en-US"
@@ -10698,13 +10698,13 @@
"11671"
],
"x-ms-request-id": [
- "59078f52-50a0-44f9-9043-c08a715833a6"
+ "2302b268-1d62-4fb6-ad3c-c66309ce9712"
],
"x-ms-correlation-request-id": [
- "59078f52-50a0-44f9-9043-c08a715833a6"
+ "2302b268-1d62-4fb6-ad3c-c66309ce9712"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224320Z:59078f52-50a0-44f9-9043-c08a715833a6"
+ "NORTHCENTRALUS:20200519T190640Z:2302b268-1d62-4fb6-ad3c-c66309ce9712"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10713,7 +10713,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:19 GMT"
+ "Tue, 19 May 2020 19:06:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10728,17 +10728,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf1d2ae8-8342-447a-af00-a7f01c88c4ee"
+ "2ffab039-3bae-4aef-bc43-a71e2929f0fc"
],
"Accept-Language": [
"en-US"
@@ -10761,13 +10761,13 @@
"11669"
],
"x-ms-request-id": [
- "a0cdee60-b74b-417c-8af0-d9fcf50038ef"
+ "64870070-ddac-48be-8f5c-1343c82f60b9"
],
"x-ms-correlation-request-id": [
- "a0cdee60-b74b-417c-8af0-d9fcf50038ef"
+ "64870070-ddac-48be-8f5c-1343c82f60b9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224320Z:a0cdee60-b74b-417c-8af0-d9fcf50038ef"
+ "NORTHCENTRALUS:20200519T190641Z:64870070-ddac-48be-8f5c-1343c82f60b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10776,7 +10776,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:20 GMT"
+ "Tue, 19 May 2020 19:06:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10791,17 +10791,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d23d216e-8d35-42b1-9b23-771e0300c7bc"
+ "43f9fec2-3ef3-4ba4-84ee-62eeda30b935"
],
"Accept-Language": [
"en-US"
@@ -10824,13 +10824,13 @@
"11667"
],
"x-ms-request-id": [
- "c71273f5-e2fc-4f4e-b8ef-6cd518a551a3"
+ "ddff787a-4dbc-44de-9eec-a68c743d3c09"
],
"x-ms-correlation-request-id": [
- "c71273f5-e2fc-4f4e-b8ef-6cd518a551a3"
+ "ddff787a-4dbc-44de-9eec-a68c743d3c09"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224321Z:c71273f5-e2fc-4f4e-b8ef-6cd518a551a3"
+ "NORTHCENTRALUS:20200519T190641Z:ddff787a-4dbc-44de-9eec-a68c743d3c09"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10839,7 +10839,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:20 GMT"
+ "Tue, 19 May 2020 19:06:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10854,17 +10854,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b402008-0e8f-41f5-9fb4-9070853f281e"
+ "27540dec-3b2c-4e3c-8f01-4ecb541b6b0c"
],
"Accept-Language": [
"en-US"
@@ -10887,13 +10887,13 @@
"11665"
],
"x-ms-request-id": [
- "cea6b73a-d9e5-41cb-992b-ad9c78c307c8"
+ "8d646351-f269-421b-b561-6f5adc9ad040"
],
"x-ms-correlation-request-id": [
- "cea6b73a-d9e5-41cb-992b-ad9c78c307c8"
+ "8d646351-f269-421b-b561-6f5adc9ad040"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224321Z:cea6b73a-d9e5-41cb-992b-ad9c78c307c8"
+ "NORTHCENTRALUS:20200519T190641Z:8d646351-f269-421b-b561-6f5adc9ad040"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10902,7 +10902,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:21 GMT"
+ "Tue, 19 May 2020 19:06:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10917,17 +10917,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57284486-45b0-406d-81e3-72ac71897d2f"
+ "6d6ebf73-115e-4126-a2d8-6f2cf2f15028"
],
"Accept-Language": [
"en-US"
@@ -10950,13 +10950,13 @@
"11663"
],
"x-ms-request-id": [
- "07b7682b-bfb2-4c6b-902b-77df26f2e87f"
+ "0311fa40-5f02-4dc0-b6bb-acda26fc81e5"
],
"x-ms-correlation-request-id": [
- "07b7682b-bfb2-4c6b-902b-77df26f2e87f"
+ "0311fa40-5f02-4dc0-b6bb-acda26fc81e5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224322Z:07b7682b-bfb2-4c6b-902b-77df26f2e87f"
+ "NORTHCENTRALUS:20200519T190642Z:0311fa40-5f02-4dc0-b6bb-acda26fc81e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10965,7 +10965,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:21 GMT"
+ "Tue, 19 May 2020 19:06:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10980,17 +10980,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95ab8336-7d42-4bbe-a40c-cac3e7420083"
+ "a1ade147-89d4-46c6-9fa0-6b082d34e6f5"
],
"Accept-Language": [
"en-US"
@@ -11013,13 +11013,13 @@
"11661"
],
"x-ms-request-id": [
- "08976263-05cf-4228-8731-293304c280b1"
+ "94e54db6-bf3d-4538-8f18-7e49f7e42a2f"
],
"x-ms-correlation-request-id": [
- "08976263-05cf-4228-8731-293304c280b1"
+ "94e54db6-bf3d-4538-8f18-7e49f7e42a2f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224322Z:08976263-05cf-4228-8731-293304c280b1"
+ "NORTHCENTRALUS:20200519T190642Z:94e54db6-bf3d-4538-8f18-7e49f7e42a2f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11028,7 +11028,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:21 GMT"
+ "Tue, 19 May 2020 19:06:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11043,17 +11043,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:25.0849341Z\",\r\n \"duration\": \"PT56.2036332S\",\r\n \"trackingId\": \"c1bdd0d1-0c18-426d-bc5f-162a79380130\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c686cb6-4e94-457e-9334-b1d852692e5a"
+ "22b33c23-a3eb-4350-a4ad-746befc61af0"
],
"Accept-Language": [
"en-US"
@@ -11076,13 +11076,13 @@
"11659"
],
"x-ms-request-id": [
- "d99cf252-4505-467b-9443-84826181479e"
+ "9eea4b82-baae-4c41-a151-0d1c21c3b6c7"
],
"x-ms-correlation-request-id": [
- "d99cf252-4505-467b-9443-84826181479e"
+ "9eea4b82-baae-4c41-a151-0d1c21c3b6c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224322Z:d99cf252-4505-467b-9443-84826181479e"
+ "NORTHCENTRALUS:20200519T190643Z:9eea4b82-baae-4c41-a151-0d1c21c3b6c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11091,7 +11091,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:22 GMT"
+ "Tue, 19 May 2020 19:06:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11100,23 +11100,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "381a2a21-15d1-4c5b-8218-53bdbd5be4f9"
+ "948bc6e5-2157-41ae-927c-7e494947834a"
],
"Accept-Language": [
"en-US"
@@ -11139,13 +11139,13 @@
"11657"
],
"x-ms-request-id": [
- "de0ccab2-53e8-4908-b350-27171c4eca04"
+ "a09e0479-e94b-4aab-bd02-c7ec5fc2dc27"
],
"x-ms-correlation-request-id": [
- "de0ccab2-53e8-4908-b350-27171c4eca04"
+ "a09e0479-e94b-4aab-bd02-c7ec5fc2dc27"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224323Z:de0ccab2-53e8-4908-b350-27171c4eca04"
+ "NORTHCENTRALUS:20200519T190643Z:a09e0479-e94b-4aab-bd02-c7ec5fc2dc27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11154,7 +11154,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:22 GMT"
+ "Tue, 19 May 2020 19:06:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11163,23 +11163,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91c483c3-ea36-46bc-b7e2-d50e49d019a1"
+ "4db99b8c-e5a8-4a65-84d1-d48a9b44069b"
],
"Accept-Language": [
"en-US"
@@ -11202,13 +11202,13 @@
"11655"
],
"x-ms-request-id": [
- "e2f6c906-6314-4b2a-a2cb-61b5e9adde62"
+ "3b833735-d969-4093-a9aa-367a7c8237c0"
],
"x-ms-correlation-request-id": [
- "e2f6c906-6314-4b2a-a2cb-61b5e9adde62"
+ "3b833735-d969-4093-a9aa-367a7c8237c0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224323Z:e2f6c906-6314-4b2a-a2cb-61b5e9adde62"
+ "NORTHCENTRALUS:20200519T190644Z:3b833735-d969-4093-a9aa-367a7c8237c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11217,7 +11217,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:23 GMT"
+ "Tue, 19 May 2020 19:06:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11226,23 +11226,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50a8384c-4754-4bbb-afb5-96a65c96f5e2"
+ "1f69fd41-07e9-4f25-a4db-655bec030871"
],
"Accept-Language": [
"en-US"
@@ -11265,13 +11265,13 @@
"11653"
],
"x-ms-request-id": [
- "6a7707de-5688-4df0-bc08-6adcd31907c8"
+ "24a6c174-726f-4620-adb4-a0f31c71352a"
],
"x-ms-correlation-request-id": [
- "6a7707de-5688-4df0-bc08-6adcd31907c8"
+ "24a6c174-726f-4620-adb4-a0f31c71352a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224324Z:6a7707de-5688-4df0-bc08-6adcd31907c8"
+ "NORTHCENTRALUS:20200519T190644Z:24a6c174-726f-4620-adb4-a0f31c71352a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11280,7 +11280,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:23 GMT"
+ "Tue, 19 May 2020 19:06:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11289,23 +11289,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05dbc4f6-cb21-47e4-abd8-a3ebbdc8917f"
+ "110c3ab8-604f-4f87-90b2-21df601de206"
],
"Accept-Language": [
"en-US"
@@ -11328,13 +11328,13 @@
"11651"
],
"x-ms-request-id": [
- "e933709c-8798-441e-9c78-e20aeaaa93b4"
+ "e82d0954-08f7-41bf-b1af-aa965c25e30a"
],
"x-ms-correlation-request-id": [
- "e933709c-8798-441e-9c78-e20aeaaa93b4"
+ "e82d0954-08f7-41bf-b1af-aa965c25e30a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224324Z:e933709c-8798-441e-9c78-e20aeaaa93b4"
+ "NORTHCENTRALUS:20200519T190644Z:e82d0954-08f7-41bf-b1af-aa965c25e30a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11343,7 +11343,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:23 GMT"
+ "Tue, 19 May 2020 19:06:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11352,23 +11352,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e69e2f8d-fa87-4dff-82c4-ebbe9e69d87e"
+ "b09c6b98-21e3-4b9a-8e1a-8e73861227ba"
],
"Accept-Language": [
"en-US"
@@ -11391,13 +11391,13 @@
"11649"
],
"x-ms-request-id": [
- "eb9324e2-af14-4c06-88c4-020352b153c5"
+ "6bb975b4-317d-4ab2-95d9-5090467e94cd"
],
"x-ms-correlation-request-id": [
- "eb9324e2-af14-4c06-88c4-020352b153c5"
+ "6bb975b4-317d-4ab2-95d9-5090467e94cd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224324Z:eb9324e2-af14-4c06-88c4-020352b153c5"
+ "NORTHCENTRALUS:20200519T190645Z:6bb975b4-317d-4ab2-95d9-5090467e94cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11406,7 +11406,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:24 GMT"
+ "Tue, 19 May 2020 19:06:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11415,23 +11415,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23d992d9-24d4-4461-8c3b-a7949ea8a22d"
+ "b9dffc22-2460-42ad-9ef8-e5956686a896"
],
"Accept-Language": [
"en-US"
@@ -11454,13 +11454,13 @@
"11647"
],
"x-ms-request-id": [
- "ad225887-2911-4cfa-94d9-b80b15f0078b"
+ "7588eed9-cd80-4cd9-a035-76c0892dfedf"
],
"x-ms-correlation-request-id": [
- "ad225887-2911-4cfa-94d9-b80b15f0078b"
+ "7588eed9-cd80-4cd9-a035-76c0892dfedf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224325Z:ad225887-2911-4cfa-94d9-b80b15f0078b"
+ "NORTHCENTRALUS:20200519T190645Z:7588eed9-cd80-4cd9-a035-76c0892dfedf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11469,7 +11469,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:24 GMT"
+ "Tue, 19 May 2020 19:06:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11478,23 +11478,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47f159ad-d5f2-43af-b08a-d757dd2d506e"
+ "3a14992a-84b8-4536-8a89-7681c274d2ec"
],
"Accept-Language": [
"en-US"
@@ -11517,13 +11517,13 @@
"11645"
],
"x-ms-request-id": [
- "d5627b3b-11e6-4645-8102-75fbfda585b2"
+ "c5d9b6d7-19af-4392-ab58-c37701723b9e"
],
"x-ms-correlation-request-id": [
- "d5627b3b-11e6-4645-8102-75fbfda585b2"
+ "c5d9b6d7-19af-4392-ab58-c37701723b9e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224325Z:d5627b3b-11e6-4645-8102-75fbfda585b2"
+ "NORTHCENTRALUS:20200519T190645Z:c5d9b6d7-19af-4392-ab58-c37701723b9e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11532,7 +11532,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:25 GMT"
+ "Tue, 19 May 2020 19:06:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11541,23 +11541,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21e0a8c8-e4c3-41b8-894d-c6ae1fa93038"
+ "55256c67-172e-4669-95cf-a626c2cc5853"
],
"Accept-Language": [
"en-US"
@@ -11580,13 +11580,13 @@
"11643"
],
"x-ms-request-id": [
- "7dab494d-0a81-4a35-9a63-0d28c9366250"
+ "0220b709-0d11-4043-89c6-dd6000a9b6c9"
],
"x-ms-correlation-request-id": [
- "7dab494d-0a81-4a35-9a63-0d28c9366250"
+ "0220b709-0d11-4043-89c6-dd6000a9b6c9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224326Z:7dab494d-0a81-4a35-9a63-0d28c9366250"
+ "NORTHCENTRALUS:20200519T190646Z:0220b709-0d11-4043-89c6-dd6000a9b6c9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11595,7 +11595,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:25 GMT"
+ "Tue, 19 May 2020 19:06:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11604,23 +11604,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13af0e1d-258e-4540-8eb5-406029c3561d"
+ "c52fe6f2-bc7b-438f-afe5-633c049047bb"
],
"Accept-Language": [
"en-US"
@@ -11643,13 +11643,13 @@
"11641"
],
"x-ms-request-id": [
- "a6ceb982-d456-4ac8-8aa1-21e3ba5b7584"
+ "69bfb7cd-3756-4abc-94ff-ed30fe1af5aa"
],
"x-ms-correlation-request-id": [
- "a6ceb982-d456-4ac8-8aa1-21e3ba5b7584"
+ "69bfb7cd-3756-4abc-94ff-ed30fe1af5aa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224326Z:a6ceb982-d456-4ac8-8aa1-21e3ba5b7584"
+ "NORTHCENTRALUS:20200519T190646Z:69bfb7cd-3756-4abc-94ff-ed30fe1af5aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11658,7 +11658,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:25 GMT"
+ "Tue, 19 May 2020 19:06:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11667,23 +11667,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e4862e7-ec38-413a-ac0c-6d69fcf496b1"
+ "67a28d53-ff0f-4ff0-9957-abd611f35111"
],
"Accept-Language": [
"en-US"
@@ -11706,13 +11706,13 @@
"11639"
],
"x-ms-request-id": [
- "878ae37c-4292-4100-b3e3-46214be3bb5b"
+ "68ab9519-57e0-417f-bb65-8d50c07a63a0"
],
"x-ms-correlation-request-id": [
- "878ae37c-4292-4100-b3e3-46214be3bb5b"
+ "68ab9519-57e0-417f-bb65-8d50c07a63a0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224327Z:878ae37c-4292-4100-b3e3-46214be3bb5b"
+ "NORTHCENTRALUS:20200519T190647Z:68ab9519-57e0-417f-bb65-8d50c07a63a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11721,7 +11721,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:26 GMT"
+ "Tue, 19 May 2020 19:06:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11730,23 +11730,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a772abc9-8515-4aaf-bd38-cfbf4b56e922"
+ "bbeb2f68-3cfc-40e7-9dcf-1d459270c1dd"
],
"Accept-Language": [
"en-US"
@@ -11769,13 +11769,13 @@
"11637"
],
"x-ms-request-id": [
- "2dd3424d-35cc-4c48-a792-6d086156bd28"
+ "efabf8f8-1b6c-4125-a8f8-0612a02f621e"
],
"x-ms-correlation-request-id": [
- "2dd3424d-35cc-4c48-a792-6d086156bd28"
+ "efabf8f8-1b6c-4125-a8f8-0612a02f621e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224327Z:2dd3424d-35cc-4c48-a792-6d086156bd28"
+ "NORTHCENTRALUS:20200519T190647Z:efabf8f8-1b6c-4125-a8f8-0612a02f621e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11784,7 +11784,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:26 GMT"
+ "Tue, 19 May 2020 19:06:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11793,23 +11793,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "feefbf52-b268-4857-94a7-346e7faf8360"
+ "c681bb87-3d2b-47fe-8f99-ac48af3fbb29"
],
"Accept-Language": [
"en-US"
@@ -11832,13 +11832,13 @@
"11635"
],
"x-ms-request-id": [
- "d2a405dc-2e78-43e0-b28b-aa089ea0cbcb"
+ "0a75b90b-7d6d-4316-a13a-c834b687695f"
],
"x-ms-correlation-request-id": [
- "d2a405dc-2e78-43e0-b28b-aa089ea0cbcb"
+ "0a75b90b-7d6d-4316-a13a-c834b687695f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224327Z:d2a405dc-2e78-43e0-b28b-aa089ea0cbcb"
+ "NORTHCENTRALUS:20200519T190647Z:0a75b90b-7d6d-4316-a13a-c834b687695f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11847,7 +11847,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:27 GMT"
+ "Tue, 19 May 2020 19:06:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11856,23 +11856,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6545e2c-62cb-419c-922c-46ce3fcebdd2"
+ "261b9042-41fe-479c-8c93-82277efb9914"
],
"Accept-Language": [
"en-US"
@@ -11895,13 +11895,13 @@
"11633"
],
"x-ms-request-id": [
- "ccfb4b38-74f6-422a-9d48-505597385095"
+ "62dc221b-5319-4fd6-b9a8-1e4f4d66772d"
],
"x-ms-correlation-request-id": [
- "ccfb4b38-74f6-422a-9d48-505597385095"
+ "62dc221b-5319-4fd6-b9a8-1e4f4d66772d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224328Z:ccfb4b38-74f6-422a-9d48-505597385095"
+ "NORTHCENTRALUS:20200519T190648Z:62dc221b-5319-4fd6-b9a8-1e4f4d66772d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11910,7 +11910,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:27 GMT"
+ "Tue, 19 May 2020 19:06:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11919,23 +11919,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee016bf6-030e-4a61-a617-133ef7100e94"
+ "c0764f43-02c0-4839-8a8b-560255a4b379"
],
"Accept-Language": [
"en-US"
@@ -11958,13 +11958,13 @@
"11631"
],
"x-ms-request-id": [
- "d88a6776-37dc-4a9f-95ee-e4e1064c05fd"
+ "a285865c-e8fc-4637-bc88-4a4771da359b"
],
"x-ms-correlation-request-id": [
- "d88a6776-37dc-4a9f-95ee-e4e1064c05fd"
+ "a285865c-e8fc-4637-bc88-4a4771da359b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224328Z:d88a6776-37dc-4a9f-95ee-e4e1064c05fd"
+ "NORTHCENTRALUS:20200519T190648Z:a285865c-e8fc-4637-bc88-4a4771da359b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11973,7 +11973,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:27 GMT"
+ "Tue, 19 May 2020 19:06:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11982,23 +11982,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d02baf6-28f9-4a03-9de8-59158b19a43e"
+ "959a1284-3f69-42f0-b640-8ad1ffb51ad7"
],
"Accept-Language": [
"en-US"
@@ -12021,13 +12021,13 @@
"11629"
],
"x-ms-request-id": [
- "04b166f3-df8e-4b29-a790-c91bc6d7b09c"
+ "233472f5-a1e8-418b-ad50-8042c1d6015c"
],
"x-ms-correlation-request-id": [
- "04b166f3-df8e-4b29-a790-c91bc6d7b09c"
+ "233472f5-a1e8-418b-ad50-8042c1d6015c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224329Z:04b166f3-df8e-4b29-a790-c91bc6d7b09c"
+ "NORTHCENTRALUS:20200519T190649Z:233472f5-a1e8-418b-ad50-8042c1d6015c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12036,7 +12036,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:28 GMT"
+ "Tue, 19 May 2020 19:06:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12045,23 +12045,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdd6a19c-a412-465f-ac9d-0b8dcdadd1cc"
+ "2348985d-83ea-4626-afd0-2e75ac757d9e"
],
"Accept-Language": [
"en-US"
@@ -12084,13 +12084,13 @@
"11627"
],
"x-ms-request-id": [
- "00852f0d-95c3-4ae1-8b6e-4d7936ab675e"
+ "d30db703-6ba0-450f-acf3-7d3cb9c7d7d6"
],
"x-ms-correlation-request-id": [
- "00852f0d-95c3-4ae1-8b6e-4d7936ab675e"
+ "d30db703-6ba0-450f-acf3-7d3cb9c7d7d6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224329Z:00852f0d-95c3-4ae1-8b6e-4d7936ab675e"
+ "NORTHCENTRALUS:20200519T190649Z:d30db703-6ba0-450f-acf3-7d3cb9c7d7d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12099,7 +12099,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:28 GMT"
+ "Tue, 19 May 2020 19:06:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12108,23 +12108,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffa1a525-f73b-4116-82cc-35b36515d535"
+ "b7733063-e711-49aa-ba6a-2d6c22125bc5"
],
"Accept-Language": [
"en-US"
@@ -12147,13 +12147,13 @@
"11625"
],
"x-ms-request-id": [
- "f3a892a9-4ab0-4bc6-8543-904540565521"
+ "917cd811-a258-4d2f-8c19-ef2d1844658d"
],
"x-ms-correlation-request-id": [
- "f3a892a9-4ab0-4bc6-8543-904540565521"
+ "917cd811-a258-4d2f-8c19-ef2d1844658d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224329Z:f3a892a9-4ab0-4bc6-8543-904540565521"
+ "NORTHCENTRALUS:20200519T190649Z:917cd811-a258-4d2f-8c19-ef2d1844658d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12162,7 +12162,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:29 GMT"
+ "Tue, 19 May 2020 19:06:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12171,23 +12171,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5d1d262-2b23-43e8-8907-c528d53be25b"
+ "42adac1c-85d7-4182-9c5c-554fb6d8354b"
],
"Accept-Language": [
"en-US"
@@ -12210,13 +12210,13 @@
"11623"
],
"x-ms-request-id": [
- "9e023651-11c0-42d4-ad00-2e062b04f707"
+ "9dcdd024-2213-4fd9-8bd8-7ac20c9eb8b7"
],
"x-ms-correlation-request-id": [
- "9e023651-11c0-42d4-ad00-2e062b04f707"
+ "9dcdd024-2213-4fd9-8bd8-7ac20c9eb8b7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224330Z:9e023651-11c0-42d4-ad00-2e062b04f707"
+ "NORTHCENTRALUS:20200519T190650Z:9dcdd024-2213-4fd9-8bd8-7ac20c9eb8b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12225,7 +12225,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:29 GMT"
+ "Tue, 19 May 2020 19:06:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12234,23 +12234,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51527453-33d6-47d2-937d-0f9148a0afc8"
+ "813147cc-367c-4f8b-b00a-6054faad9d3b"
],
"Accept-Language": [
"en-US"
@@ -12273,13 +12273,13 @@
"11621"
],
"x-ms-request-id": [
- "6710333e-591c-4cf6-b1c5-1082e1ef2168"
+ "e254d530-08ee-427c-a95f-f10d943616fb"
],
"x-ms-correlation-request-id": [
- "6710333e-591c-4cf6-b1c5-1082e1ef2168"
+ "e254d530-08ee-427c-a95f-f10d943616fb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224330Z:6710333e-591c-4cf6-b1c5-1082e1ef2168"
+ "NORTHCENTRALUS:20200519T190650Z:e254d530-08ee-427c-a95f-f10d943616fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12288,7 +12288,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:29 GMT"
+ "Tue, 19 May 2020 19:06:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12297,23 +12297,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d04cc78-2c94-43e7-90f5-8e683f5b8707"
+ "b1b01a71-bd4a-44f1-9c6d-ceafdbbed9c4"
],
"Accept-Language": [
"en-US"
@@ -12336,13 +12336,13 @@
"11619"
],
"x-ms-request-id": [
- "7c2bc090-1bb3-4dea-ac3b-ad65dc0b0f94"
+ "5f7b0bf8-0f55-4f99-a9d7-ce434a6a18e3"
],
"x-ms-correlation-request-id": [
- "7c2bc090-1bb3-4dea-ac3b-ad65dc0b0f94"
+ "5f7b0bf8-0f55-4f99-a9d7-ce434a6a18e3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224331Z:7c2bc090-1bb3-4dea-ac3b-ad65dc0b0f94"
+ "NORTHCENTRALUS:20200519T190651Z:5f7b0bf8-0f55-4f99-a9d7-ce434a6a18e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12351,7 +12351,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:30 GMT"
+ "Tue, 19 May 2020 19:06:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12360,23 +12360,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f0b1d41-2085-4c9f-ad89-1078d883fe57"
+ "ff4c8bb6-4212-4538-8810-7e0b680ebe6c"
],
"Accept-Language": [
"en-US"
@@ -12399,13 +12399,13 @@
"11617"
],
"x-ms-request-id": [
- "54e827c5-edaf-4229-bad2-d16da6077372"
+ "4266c75d-316c-47a3-9904-af0f049264cd"
],
"x-ms-correlation-request-id": [
- "54e827c5-edaf-4229-bad2-d16da6077372"
+ "4266c75d-316c-47a3-9904-af0f049264cd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224331Z:54e827c5-edaf-4229-bad2-d16da6077372"
+ "NORTHCENTRALUS:20200519T190651Z:4266c75d-316c-47a3-9904-af0f049264cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12414,7 +12414,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:30 GMT"
+ "Tue, 19 May 2020 19:06:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12423,23 +12423,13505 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52c40ce4-1ef1-4f27-a428-2c1222791af1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11615"
+ ],
+ "x-ms-request-id": [
+ "988f0c8e-ec60-4f13-9542-70bd1f4de949"
+ ],
+ "x-ms-correlation-request-id": [
+ "988f0c8e-ec60-4f13-9542-70bd1f4de949"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190651Z:988f0c8e-ec60-4f13-9542-70bd1f4de949"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "84c66618-818b-45f9-9ce2-adbd241fc5a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11613"
+ ],
+ "x-ms-request-id": [
+ "65bb6e3f-0a33-45a0-9361-0b81366dd05e"
+ ],
+ "x-ms-correlation-request-id": [
+ "65bb6e3f-0a33-45a0-9361-0b81366dd05e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190652Z:65bb6e3f-0a33-45a0-9361-0b81366dd05e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e12e08e-dd46-4f07-b691-2cb8bf8ebf30"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11611"
+ ],
+ "x-ms-request-id": [
+ "17317f5a-cf5a-4489-ba16-012219eab964"
+ ],
+ "x-ms-correlation-request-id": [
+ "17317f5a-cf5a-4489-ba16-012219eab964"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190652Z:17317f5a-cf5a-4489-ba16-012219eab964"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1c5a9a2a-a942-4dab-bd96-8ca8dd40a725"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11609"
+ ],
+ "x-ms-request-id": [
+ "db87c6af-7516-43da-87b6-746c173e07eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "db87c6af-7516-43da-87b6-746c173e07eb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190652Z:db87c6af-7516-43da-87b6-746c173e07eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8fa86484-7543-4529-a71a-d45dfefa9909"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11607"
+ ],
+ "x-ms-request-id": [
+ "69562830-94ea-4aa3-b30a-60f3b9ca4cbb"
+ ],
+ "x-ms-correlation-request-id": [
+ "69562830-94ea-4aa3-b30a-60f3b9ca4cbb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190653Z:69562830-94ea-4aa3-b30a-60f3b9ca4cbb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:53 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "efeb628a-1f1f-4f01-b1e1-c9ee5e139902"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11605"
+ ],
+ "x-ms-request-id": [
+ "abecc1ac-a5b8-4a9c-a791-2ba2e635fa43"
+ ],
+ "x-ms-correlation-request-id": [
+ "abecc1ac-a5b8-4a9c-a791-2ba2e635fa43"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190653Z:abecc1ac-a5b8-4a9c-a791-2ba2e635fa43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:53 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6790f89-24b2-4c37-85e6-5a6fe7bd658f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11603"
+ ],
+ "x-ms-request-id": [
+ "53911edc-ca08-4560-8e6e-7ddd24bc99b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "53911edc-ca08-4560-8e6e-7ddd24bc99b4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190654Z:53911edc-ca08-4560-8e6e-7ddd24bc99b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:53 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "68b8247d-c909-449f-8fb4-7a8912b28f60"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11601"
+ ],
+ "x-ms-request-id": [
+ "5cd819c3-c1c5-419a-a007-a8e6a17676d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "5cd819c3-c1c5-419a-a007-a8e6a17676d6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190654Z:5cd819c3-c1c5-419a-a007-a8e6a17676d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.6384597Z\",\r\n \"duration\": \"PT1M13.7571588S\",\r\n \"trackingId\": \"d4f285a0-2c03-4582-984f-d9f476232ed8\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "774f311d-e0cd-4158-9983-a0fb507649dd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11599"
+ ],
+ "x-ms-request-id": [
+ "9eb71cc7-72d4-4113-97b5-9f819b6e6821"
+ ],
+ "x-ms-correlation-request-id": [
+ "9eb71cc7-72d4-4113-97b5-9f819b6e6821"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190654Z:9eb71cc7-72d4-4113-97b5-9f819b6e6821"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "07df0cfc-c9e1-4276-8384-b4cab1d6a863"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11597"
+ ],
+ "x-ms-request-id": [
+ "9e974a65-9334-4fad-b577-0b5622b69822"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e974a65-9334-4fad-b577-0b5622b69822"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190655Z:9e974a65-9334-4fad-b577-0b5622b69822"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fece39ab-1b10-4063-85ce-fc7e7d8eacf6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11595"
+ ],
+ "x-ms-request-id": [
+ "63555abf-e98f-46e5-b5f5-0bb85f61aef3"
+ ],
+ "x-ms-correlation-request-id": [
+ "63555abf-e98f-46e5-b5f5-0bb85f61aef3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190655Z:63555abf-e98f-46e5-b5f5-0bb85f61aef3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ed5a846-2f27-41e7-9a0c-4f575f4f90d8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11593"
+ ],
+ "x-ms-request-id": [
+ "8cbe1581-6619-4a0f-8c63-fec3173201f2"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cbe1581-6619-4a0f-8c63-fec3173201f2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190656Z:8cbe1581-6619-4a0f-8c63-fec3173201f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ee1dfb20-1566-4c52-a2aa-f5fcd972e579"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11591"
+ ],
+ "x-ms-request-id": [
+ "e453e2e1-8be1-44ae-aa92-1b696de72094"
+ ],
+ "x-ms-correlation-request-id": [
+ "e453e2e1-8be1-44ae-aa92-1b696de72094"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190656Z:e453e2e1-8be1-44ae-aa92-1b696de72094"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8e04b6bb-cba2-4de0-b024-569a5711644a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11589"
+ ],
+ "x-ms-request-id": [
+ "1e99e9b2-9c53-4e1b-b279-764e578d2781"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e99e9b2-9c53-4e1b-b279-764e578d2781"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190656Z:1e99e9b2-9c53-4e1b-b279-764e578d2781"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "00dca386-0732-4ab9-8fab-4ae1e3bb8719"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11587"
+ ],
+ "x-ms-request-id": [
+ "c35c942f-e60c-48d4-8cd5-09d71095f92a"
+ ],
+ "x-ms-correlation-request-id": [
+ "c35c942f-e60c-48d4-8cd5-09d71095f92a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190657Z:c35c942f-e60c-48d4-8cd5-09d71095f92a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "24197654-23fd-45a6-9b10-9df1dc01969c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11585"
+ ],
+ "x-ms-request-id": [
+ "5d7075be-0c9f-49f1-9088-e08f9b186055"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d7075be-0c9f-49f1-9088-e08f9b186055"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190657Z:5d7075be-0c9f-49f1-9088-e08f9b186055"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d9e03e16-65fe-421b-808d-72f5dfe91bfb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11583"
+ ],
+ "x-ms-request-id": [
+ "c7b4ac53-b1c8-41ec-b009-90a2d79f6e43"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7b4ac53-b1c8-41ec-b009-90a2d79f6e43"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190658Z:c7b4ac53-b1c8-41ec-b009-90a2d79f6e43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13a279a3-7316-47c2-9754-d2ecd0c75f5b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11581"
+ ],
+ "x-ms-request-id": [
+ "79bada4f-1ba7-4745-bd75-1fdf7bc36dff"
+ ],
+ "x-ms-correlation-request-id": [
+ "79bada4f-1ba7-4745-bd75-1fdf7bc36dff"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190658Z:79bada4f-1ba7-4745-bd75-1fdf7bc36dff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "165ce423-2c95-45a4-b75a-d33d5ac865b3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11579"
+ ],
+ "x-ms-request-id": [
+ "9b2f8c7b-6ce6-44c4-a96c-cb2861171bab"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b2f8c7b-6ce6-44c4-a96c-cb2861171bab"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190659Z:9b2f8c7b-6ce6-44c4-a96c-cb2861171bab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3810494f-d42e-49ff-b6d3-2af944b00314"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11577"
+ ],
+ "x-ms-request-id": [
+ "28de8151-401f-4de5-8acf-6962bdcbf556"
+ ],
+ "x-ms-correlation-request-id": [
+ "28de8151-401f-4de5-8acf-6962bdcbf556"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190659Z:28de8151-401f-4de5-8acf-6962bdcbf556"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39c1a5fe-117c-4199-9347-a84dd93cfe75"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11575"
+ ],
+ "x-ms-request-id": [
+ "eb3c50e7-a5f3-4a1b-9cef-531611093faa"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb3c50e7-a5f3-4a1b-9cef-531611093faa"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190659Z:eb3c50e7-a5f3-4a1b-9cef-531611093faa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "05c2cee0-4a14-42b3-b068-a11c08051966"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11573"
+ ],
+ "x-ms-request-id": [
+ "bbeb0676-aa7d-4db8-afd4-dd04d482f0c3"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbeb0676-aa7d-4db8-afd4-dd04d482f0c3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190700Z:bbeb0676-aa7d-4db8-afd4-dd04d482f0c3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed59d0ec-0781-48cc-b7ab-ec5c224734a7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11571"
+ ],
+ "x-ms-request-id": [
+ "c7cefaa2-86ca-46bb-9f6d-169faeb6695d"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7cefaa2-86ca-46bb-9f6d-169faeb6695d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190700Z:c7cefaa2-86ca-46bb-9f6d-169faeb6695d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fad76fb9-8ea9-4e5f-a04a-037fbb53111c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11569"
+ ],
+ "x-ms-request-id": [
+ "00ced32e-dc31-4cae-97c3-d249dcc7da4a"
+ ],
+ "x-ms-correlation-request-id": [
+ "00ced32e-dc31-4cae-97c3-d249dcc7da4a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190700Z:00ced32e-dc31-4cae-97c3-d249dcc7da4a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7caffad5-ed46-420c-8014-ee4402ff7dc5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11567"
+ ],
+ "x-ms-request-id": [
+ "3042445d-9afc-4821-a531-da559d608a24"
+ ],
+ "x-ms-correlation-request-id": [
+ "3042445d-9afc-4821-a531-da559d608a24"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190701Z:3042445d-9afc-4821-a531-da559d608a24"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98cdca9a-3e96-4e0a-82dd-36d60c5d2d98"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11565"
+ ],
+ "x-ms-request-id": [
+ "4cdef5f8-463b-4c1d-b2c6-364828b7c7e3"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cdef5f8-463b-4c1d-b2c6-364828b7c7e3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190701Z:4cdef5f8-463b-4c1d-b2c6-364828b7c7e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ab003d7-7085-4a70-893a-a1f63ed6e266"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11563"
+ ],
+ "x-ms-request-id": [
+ "f60cfc5e-c16e-484d-94d4-cc2caa55cbf2"
+ ],
+ "x-ms-correlation-request-id": [
+ "f60cfc5e-c16e-484d-94d4-cc2caa55cbf2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190702Z:f60cfc5e-c16e-484d-94d4-cc2caa55cbf2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6c48be62-dcaf-473c-9648-e77579314534"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11561"
+ ],
+ "x-ms-request-id": [
+ "9b29759f-d410-47a8-9da2-d5272c841c4b"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b29759f-d410-47a8-9da2-d5272c841c4b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190702Z:9b29759f-d410-47a8-9da2-d5272c841c4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "834ccb37-53de-4c6c-a8fd-a06b6b99197b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11559"
+ ],
+ "x-ms-request-id": [
+ "2509f519-de25-43cb-a535-2ff2347ec587"
+ ],
+ "x-ms-correlation-request-id": [
+ "2509f519-de25-43cb-a535-2ff2347ec587"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190702Z:2509f519-de25-43cb-a535-2ff2347ec587"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "032c3fcf-2f26-4704-b639-2d75058d14da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11557"
+ ],
+ "x-ms-request-id": [
+ "684b9197-8cbd-4001-9600-bae254fa7fbe"
+ ],
+ "x-ms-correlation-request-id": [
+ "684b9197-8cbd-4001-9600-bae254fa7fbe"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190703Z:684b9197-8cbd-4001-9600-bae254fa7fbe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7adc0681-e21e-45a9-8be7-77dc6c096d53"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11555"
+ ],
+ "x-ms-request-id": [
+ "2e3f3556-9370-4ebe-be41-a2069ea20cab"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e3f3556-9370-4ebe-be41-a2069ea20cab"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190703Z:2e3f3556-9370-4ebe-be41-a2069ea20cab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4a7363db-64e2-4803-bd29-8c41ee91e426"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11553"
+ ],
+ "x-ms-request-id": [
+ "5f17edcf-4adb-4787-a550-c09effed83b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f17edcf-4adb-4787-a550-c09effed83b7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190704Z:5f17edcf-4adb-4787-a550-c09effed83b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0dda68be-3526-4aa5-aac4-9b67b0438ef9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11551"
+ ],
+ "x-ms-request-id": [
+ "399c1696-2871-4f4a-b1ee-6e8c1e5b6ae1"
+ ],
+ "x-ms-correlation-request-id": [
+ "399c1696-2871-4f4a-b1ee-6e8c1e5b6ae1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190704Z:399c1696-2871-4f4a-b1ee-6e8c1e5b6ae1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c3595c87-413f-41d2-9724-1f58c423652b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11549"
+ ],
+ "x-ms-request-id": [
+ "5fa7c859-6fec-4d2a-baf6-2d7042d02048"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fa7c859-6fec-4d2a-baf6-2d7042d02048"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190704Z:5fa7c859-6fec-4d2a-baf6-2d7042d02048"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cae9e9f2-ff48-4bd3-9c69-e937f798d7a9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11547"
+ ],
+ "x-ms-request-id": [
+ "425fbff3-f42a-4417-9d84-1e2340983a34"
+ ],
+ "x-ms-correlation-request-id": [
+ "425fbff3-f42a-4417-9d84-1e2340983a34"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190705Z:425fbff3-f42a-4417-9d84-1e2340983a34"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8f2eb07-23fa-4da9-ae71-9c86192a1878"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11545"
+ ],
+ "x-ms-request-id": [
+ "ae56b99d-26c4-4047-ad8b-826c06d2a9be"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae56b99d-26c4-4047-ad8b-826c06d2a9be"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190705Z:ae56b99d-26c4-4047-ad8b-826c06d2a9be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bd6b3933-128a-4daf-83ef-4e963d296a79"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11543"
+ ],
+ "x-ms-request-id": [
+ "a61e31b1-b91e-407f-96c1-b3d21eb03f5a"
+ ],
+ "x-ms-correlation-request-id": [
+ "a61e31b1-b91e-407f-96c1-b3d21eb03f5a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190706Z:a61e31b1-b91e-407f-96c1-b3d21eb03f5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "af1f1627-62b7-4cfd-a0cf-536634933ec2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11541"
+ ],
+ "x-ms-request-id": [
+ "2af5f16d-75d0-43d1-a4d2-80bd8628f638"
+ ],
+ "x-ms-correlation-request-id": [
+ "2af5f16d-75d0-43d1-a4d2-80bd8628f638"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190706Z:2af5f16d-75d0-43d1-a4d2-80bd8628f638"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ab405e4-7761-4529-aa99-41303633ffc9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11539"
+ ],
+ "x-ms-request-id": [
+ "5b9e1add-aed6-402d-83d6-2ab4a563e40e"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b9e1add-aed6-402d-83d6-2ab4a563e40e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190706Z:5b9e1add-aed6-402d-83d6-2ab4a563e40e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2b467d2-14b3-47b0-bada-d03d436366a7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11537"
+ ],
+ "x-ms-request-id": [
+ "bbf24ec1-41ae-4438-8e53-5bba36faa752"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbf24ec1-41ae-4438-8e53-5bba36faa752"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190707Z:bbf24ec1-41ae-4438-8e53-5bba36faa752"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "829"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.752858Z\",\r\n \"duration\": \"PT1M25.8715571S\",\r\n \"trackingId\": \"25a8c3e9-feb7-44d2-9e93-1d30281e4bd9\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "860684cf-572c-4738-892b-259e1fc4e35b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11535"
+ ],
+ "x-ms-request-id": [
+ "301f62a8-f4b3-4fb8-8dcd-6eda87dbb480"
+ ],
+ "x-ms-correlation-request-id": [
+ "301f62a8-f4b3-4fb8-8dcd-6eda87dbb480"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190707Z:301f62a8-f4b3-4fb8-8dcd-6eda87dbb480"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "57613051-944d-4fad-82d7-041c150c6121"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11533"
+ ],
+ "x-ms-request-id": [
+ "902c8dd7-c4fa-467d-a338-d95262655001"
+ ],
+ "x-ms-correlation-request-id": [
+ "902c8dd7-c4fa-467d-a338-d95262655001"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190708Z:902c8dd7-c4fa-467d-a338-d95262655001"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54652050-9fdc-4955-8028-c163bade898e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11531"
+ ],
+ "x-ms-request-id": [
+ "3e660112-a8d2-49b8-8330-3cd7a0a757ee"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e660112-a8d2-49b8-8330-3cd7a0a757ee"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190708Z:3e660112-a8d2-49b8-8330-3cd7a0a757ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0da80442-4e95-4269-b76a-07c326187ee5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11529"
+ ],
+ "x-ms-request-id": [
+ "813ea6f1-e987-4988-a00c-d081f2d8ab23"
+ ],
+ "x-ms-correlation-request-id": [
+ "813ea6f1-e987-4988-a00c-d081f2d8ab23"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190709Z:813ea6f1-e987-4988-a00c-d081f2d8ab23"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1e1cfcc1-62aa-41d6-91e9-518ac5087f9b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11527"
+ ],
+ "x-ms-request-id": [
+ "4d8d2a44-b97c-4eb2-a368-59f3caf67f22"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d8d2a44-b97c-4eb2-a368-59f3caf67f22"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190709Z:4d8d2a44-b97c-4eb2-a368-59f3caf67f22"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d3221af9-43cf-4dd8-86b0-9cb3638a3bda"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11525"
+ ],
+ "x-ms-request-id": [
+ "ed2c7bbb-33f5-4a90-a4ed-cf29f9691055"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed2c7bbb-33f5-4a90-a4ed-cf29f9691055"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190710Z:ed2c7bbb-33f5-4a90-a4ed-cf29f9691055"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0dd6fc34-fe71-4a56-bd7a-2d93b812b7cb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11523"
+ ],
+ "x-ms-request-id": [
+ "0d61d6df-ab5a-4ad1-bddc-7dad6df19907"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d61d6df-ab5a-4ad1-bddc-7dad6df19907"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190710Z:0d61d6df-ab5a-4ad1-bddc-7dad6df19907"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9df7ffdf-d682-4d47-8283-daf82bbcb71d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11521"
+ ],
+ "x-ms-request-id": [
+ "76324067-6c1c-4cdd-a3b9-562602e37375"
+ ],
+ "x-ms-correlation-request-id": [
+ "76324067-6c1c-4cdd-a3b9-562602e37375"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190710Z:76324067-6c1c-4cdd-a3b9-562602e37375"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4db6a12b-823b-4725-bd71-bf709ba09f9b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11519"
+ ],
+ "x-ms-request-id": [
+ "4925d677-378a-48cb-91d1-557829bc72da"
+ ],
+ "x-ms-correlation-request-id": [
+ "4925d677-378a-48cb-91d1-557829bc72da"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190711Z:4925d677-378a-48cb-91d1-557829bc72da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "001fb167-c74a-4f1d-b122-94c73f98d2e1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11517"
+ ],
+ "x-ms-request-id": [
+ "648d2ee9-7ead-4307-8c82-35b38077c393"
+ ],
+ "x-ms-correlation-request-id": [
+ "648d2ee9-7ead-4307-8c82-35b38077c393"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190711Z:648d2ee9-7ead-4307-8c82-35b38077c393"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e16afbb8-39c7-45b2-9c3c-b0dc18f6cfb5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11515"
+ ],
+ "x-ms-request-id": [
+ "949a2250-2b26-44c8-811f-c2caebb5fc53"
+ ],
+ "x-ms-correlation-request-id": [
+ "949a2250-2b26-44c8-811f-c2caebb5fc53"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190712Z:949a2250-2b26-44c8-811f-c2caebb5fc53"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f875c5bd-69b3-473a-a8f0-25514cd281b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11513"
+ ],
+ "x-ms-request-id": [
+ "5b89e965-b37c-42c7-ab29-8427c87f1afc"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b89e965-b37c-42c7-ab29-8427c87f1afc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190712Z:5b89e965-b37c-42c7-ab29-8427c87f1afc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6ba68481-ab9d-4ca2-af9d-f87393bb535e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11511"
+ ],
+ "x-ms-request-id": [
+ "1f3506e5-5aea-418c-9dea-361d83f2a2b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f3506e5-5aea-418c-9dea-361d83f2a2b8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190713Z:1f3506e5-5aea-418c-9dea-361d83f2a2b8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ec5d942-374b-4086-8c20-daa7730c6e81"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11509"
+ ],
+ "x-ms-request-id": [
+ "1c3b7418-2625-4320-b796-6a900090c0a4"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c3b7418-2625-4320-b796-6a900090c0a4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190713Z:1c3b7418-2625-4320-b796-6a900090c0a4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f1d628ab-eed4-45bc-8a1e-5f5d91e8af68"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11507"
+ ],
+ "x-ms-request-id": [
+ "2deebcd9-375f-4b39-892d-060332c318e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "2deebcd9-375f-4b39-892d-060332c318e0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190713Z:2deebcd9-375f-4b39-892d-060332c318e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3eb2cfaf-cdd7-454f-bd36-ce8a0ead1717"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11505"
+ ],
+ "x-ms-request-id": [
+ "9cd1a7ad-a580-4c62-8f63-eed5f8aed30f"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cd1a7ad-a580-4c62-8f63-eed5f8aed30f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190714Z:9cd1a7ad-a580-4c62-8f63-eed5f8aed30f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fa91494b-3125-43e4-8463-6f15dac8ca48"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11503"
+ ],
+ "x-ms-request-id": [
+ "758bedbf-aea8-400b-91d3-5a34955c2d1d"
+ ],
+ "x-ms-correlation-request-id": [
+ "758bedbf-aea8-400b-91d3-5a34955c2d1d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190714Z:758bedbf-aea8-400b-91d3-5a34955c2d1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7a108dad-ad1c-4d54-9a83-2a9e0c026bba"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11501"
+ ],
+ "x-ms-request-id": [
+ "41774575-e5cc-44c8-ad34-b738fedb2a33"
+ ],
+ "x-ms-correlation-request-id": [
+ "41774575-e5cc-44c8-ad34-b738fedb2a33"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190715Z:41774575-e5cc-44c8-ad34-b738fedb2a33"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb70a3ce-a2ae-4b4c-8826-f1c6449d2385"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11499"
+ ],
+ "x-ms-request-id": [
+ "61ae651e-88b2-4fc8-8c90-7b65ee372367"
+ ],
+ "x-ms-correlation-request-id": [
+ "61ae651e-88b2-4fc8-8c90-7b65ee372367"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190715Z:61ae651e-88b2-4fc8-8c90-7b65ee372367"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "77409e4d-3c72-4d9b-914a-17498f90f424"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11497"
+ ],
+ "x-ms-request-id": [
+ "d5e7ee6e-c20e-49c1-bebc-b1e8b29b281a"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5e7ee6e-c20e-49c1-bebc-b1e8b29b281a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190716Z:d5e7ee6e-c20e-49c1-bebc-b1e8b29b281a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd21c062-fcc6-4d9e-a6b2-2361005cd532"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11495"
+ ],
+ "x-ms-request-id": [
+ "a2a9778d-7fcf-4b5f-a640-219a116c8a6f"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2a9778d-7fcf-4b5f-a640-219a116c8a6f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190716Z:a2a9778d-7fcf-4b5f-a640-219a116c8a6f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:15 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e158152-9333-42e1-a832-fd65be786c68"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11493"
+ ],
+ "x-ms-request-id": [
+ "d189ad76-59b6-461a-8d7f-c17a048b45c4"
+ ],
+ "x-ms-correlation-request-id": [
+ "d189ad76-59b6-461a-8d7f-c17a048b45c4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190716Z:d189ad76-59b6-461a-8d7f-c17a048b45c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a340f01e-aafb-4299-a213-c79791ff0e11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11491"
+ ],
+ "x-ms-request-id": [
+ "a0bf6049-2393-4058-9a10-b2275313be3c"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0bf6049-2393-4058-9a10-b2275313be3c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190717Z:a0bf6049-2393-4058-9a10-b2275313be3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4f75f931-5264-43f8-8131-a5cf7baa2227"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11489"
+ ],
+ "x-ms-request-id": [
+ "cd3635fb-fc4c-4bda-b459-a06f043dfe39"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd3635fb-fc4c-4bda-b459-a06f043dfe39"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190717Z:cd3635fb-fc4c-4bda-b459-a06f043dfe39"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:17 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39dffd39-e7fc-421e-8eb9-1b26cfc6169f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11487"
+ ],
+ "x-ms-request-id": [
+ "2d840155-89f1-4585-a9a8-97691fea6c0d"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d840155-89f1-4585-a9a8-97691fea6c0d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190718Z:2d840155-89f1-4585-a9a8-97691fea6c0d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:17 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d373d07-67f6-4dd8-8f1f-c8779f80f6ae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11485"
+ ],
+ "x-ms-request-id": [
+ "921e7017-0dd4-4dfb-92db-63a56842c112"
+ ],
+ "x-ms-correlation-request-id": [
+ "921e7017-0dd4-4dfb-92db-63a56842c112"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190718Z:921e7017-0dd4-4dfb-92db-63a56842c112"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d8369f2-a178-4022-85c3-9b101a31e755"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11483"
+ ],
+ "x-ms-request-id": [
+ "e7590a96-2f3c-44e7-80ff-06e77aa99981"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7590a96-2f3c-44e7-80ff-06e77aa99981"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190719Z:e7590a96-2f3c-44e7-80ff-06e77aa99981"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ddc2baaa-a89a-4dc3-85b1-f8a0eb0b49e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11481"
+ ],
+ "x-ms-request-id": [
+ "947052f2-b567-4e62-a8ab-917706d2db7d"
+ ],
+ "x-ms-correlation-request-id": [
+ "947052f2-b567-4e62-a8ab-917706d2db7d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190719Z:947052f2-b567-4e62-a8ab-917706d2db7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7b737bd0-f1ff-40e6-971f-d719214f2151"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11479"
+ ],
+ "x-ms-request-id": [
+ "b0dc9f46-182d-4bbd-a595-1a91673943ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0dc9f46-182d-4bbd-a595-1a91673943ef"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190719Z:b0dc9f46-182d-4bbd-a595-1a91673943ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85a43c73-7704-4683-8ac7-9a031c988627"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11477"
+ ],
+ "x-ms-request-id": [
+ "5485a061-808f-469d-b341-e8998a3e2f56"
+ ],
+ "x-ms-correlation-request-id": [
+ "5485a061-808f-469d-b341-e8998a3e2f56"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190720Z:5485a061-808f-469d-b341-e8998a3e2f56"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95fbe071-0449-4e79-a09e-3a15593486f4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11475"
+ ],
+ "x-ms-request-id": [
+ "69364652-8d22-4711-bd2f-2958fc2618d5"
+ ],
+ "x-ms-correlation-request-id": [
+ "69364652-8d22-4711-bd2f-2958fc2618d5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190720Z:69364652-8d22-4711-bd2f-2958fc2618d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95332676-66e6-4ecf-8112-67f5faa63ae4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11473"
+ ],
+ "x-ms-request-id": [
+ "80d0c52a-f6c4-4ca0-af10-eb4751f23433"
+ ],
+ "x-ms-correlation-request-id": [
+ "80d0c52a-f6c4-4ca0-af10-eb4751f23433"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190721Z:80d0c52a-f6c4-4ca0-af10-eb4751f23433"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc20c980-8393-482a-801d-e2de65f2d1c7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11471"
+ ],
+ "x-ms-request-id": [
+ "dba7542e-2374-4edc-9a33-14ec866615d4"
+ ],
+ "x-ms-correlation-request-id": [
+ "dba7542e-2374-4edc-9a33-14ec866615d4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190721Z:dba7542e-2374-4edc-9a33-14ec866615d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dd68227a-980b-4619-832b-74737c539e7f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11469"
+ ],
+ "x-ms-request-id": [
+ "55db2838-45a8-4896-a6b8-7086fe36139b"
+ ],
+ "x-ms-correlation-request-id": [
+ "55db2838-45a8-4896-a6b8-7086fe36139b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190722Z:55db2838-45a8-4896-a6b8-7086fe36139b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.6114232Z\",\r\n \"duration\": \"PT1M38.7301223S\",\r\n \"trackingId\": \"fbad6d8c-d848-48d1-8e08-425058b4acab\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3b757ad8-477d-4412-b541-ab166a07507e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11467"
+ ],
+ "x-ms-request-id": [
+ "03940b84-c53a-4c10-a9b0-8411770a2cdc"
+ ],
+ "x-ms-correlation-request-id": [
+ "03940b84-c53a-4c10-a9b0-8411770a2cdc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190722Z:03940b84-c53a-4c10-a9b0-8411770a2cdc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3a519d4b-3e24-4a32-96e2-0959eede096e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11465"
+ ],
+ "x-ms-request-id": [
+ "74478d77-51ba-4875-ae18-cd51520ce410"
+ ],
+ "x-ms-correlation-request-id": [
+ "74478d77-51ba-4875-ae18-cd51520ce410"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190722Z:74478d77-51ba-4875-ae18-cd51520ce410"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3aed92f0-998f-4827-a5eb-80528df7542d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11463"
+ ],
+ "x-ms-request-id": [
+ "e5208244-7e2b-48c6-8cf1-bf91be9b96c3"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5208244-7e2b-48c6-8cf1-bf91be9b96c3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190723Z:e5208244-7e2b-48c6-8cf1-bf91be9b96c3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8e5114bb-6fd0-420b-a716-249096fa71ea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11461"
+ ],
+ "x-ms-request-id": [
+ "da0756ca-2944-4b25-a4e1-e640c66c000f"
+ ],
+ "x-ms-correlation-request-id": [
+ "da0756ca-2944-4b25-a4e1-e640c66c000f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190723Z:da0756ca-2944-4b25-a4e1-e640c66c000f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7e612e52-8da2-49ad-93e1-99cdd9c0f660"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11459"
+ ],
+ "x-ms-request-id": [
+ "2ee7e9c4-2b96-44ba-a082-bfd3a9f70f2a"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ee7e9c4-2b96-44ba-a082-bfd3a9f70f2a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190724Z:2ee7e9c4-2b96-44ba-a082-bfd3a9f70f2a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c3f48e60-307f-4cc9-8f2e-d8e35cbf00d8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11457"
+ ],
+ "x-ms-request-id": [
+ "d21dbd04-8e21-47cf-bd3e-a7613c7072a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "d21dbd04-8e21-47cf-bd3e-a7613c7072a3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190724Z:d21dbd04-8e21-47cf-bd3e-a7613c7072a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fb2fc3a0-8d26-43df-a85f-b688664df191"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11455"
+ ],
+ "x-ms-request-id": [
+ "f094ec15-1a83-422e-a642-7b060d29d169"
+ ],
+ "x-ms-correlation-request-id": [
+ "f094ec15-1a83-422e-a642-7b060d29d169"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190725Z:f094ec15-1a83-422e-a642-7b060d29d169"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "06dc8750-2756-4146-8611-bafb92088965"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11453"
+ ],
+ "x-ms-request-id": [
+ "fdc49f7a-dccb-4d45-976c-5b3df8cf0295"
+ ],
+ "x-ms-correlation-request-id": [
+ "fdc49f7a-dccb-4d45-976c-5b3df8cf0295"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190725Z:fdc49f7a-dccb-4d45-976c-5b3df8cf0295"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2f844db-1441-47bb-af66-843804a63151"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11451"
+ ],
+ "x-ms-request-id": [
+ "dd920ea0-1eb6-48c1-8b51-2c287fe4a957"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd920ea0-1eb6-48c1-8b51-2c287fe4a957"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190725Z:dd920ea0-1eb6-48c1-8b51-2c287fe4a957"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0bf8c2d0-fad8-45d3-8fd4-c080d8dd94a5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11449"
+ ],
+ "x-ms-request-id": [
+ "95fea9b1-746b-4c0a-875d-3819f5df4075"
+ ],
+ "x-ms-correlation-request-id": [
+ "95fea9b1-746b-4c0a-875d-3819f5df4075"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190726Z:95fea9b1-746b-4c0a-875d-3819f5df4075"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d59a15ee-508b-431d-ab38-529a5e10075f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11447"
+ ],
+ "x-ms-request-id": [
+ "97570e47-d885-423c-ba11-1006dcf2d10f"
+ ],
+ "x-ms-correlation-request-id": [
+ "97570e47-d885-423c-ba11-1006dcf2d10f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190726Z:97570e47-d885-423c-ba11-1006dcf2d10f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "75d35856-ade0-47e5-acbc-9f35f63df2e7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11445"
+ ],
+ "x-ms-request-id": [
+ "1ae0073f-055a-4799-9e46-669c4e4c9766"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ae0073f-055a-4799-9e46-669c4e4c9766"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190727Z:1ae0073f-055a-4799-9e46-669c4e4c9766"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:26 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "872a6c33-8e5d-47c8-a2b4-9af58a2d2188"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11443"
+ ],
+ "x-ms-request-id": [
+ "60c43e2b-5c07-4ec7-9683-ab32b386a087"
+ ],
+ "x-ms-correlation-request-id": [
+ "60c43e2b-5c07-4ec7-9683-ab32b386a087"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190728Z:60c43e2b-5c07-4ec7-9683-ab32b386a087"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:27 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "167bd032-a43c-4cf1-8852-0378ccf1b332"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11441"
+ ],
+ "x-ms-request-id": [
+ "8d7274fd-1d39-4deb-9b1d-923617c49641"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d7274fd-1d39-4deb-9b1d-923617c49641"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190728Z:8d7274fd-1d39-4deb-9b1d-923617c49641"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:27 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6748819-cfd4-44e8-ba8b-a5587678291a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11439"
+ ],
+ "x-ms-request-id": [
+ "37644ae0-55bc-4419-9e79-0fc788f2be57"
+ ],
+ "x-ms-correlation-request-id": [
+ "37644ae0-55bc-4419-9e79-0fc788f2be57"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190728Z:37644ae0-55bc-4419-9e79-0fc788f2be57"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:28 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9874075e-047b-4552-9fc4-d8007ae80230"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11437"
+ ],
+ "x-ms-request-id": [
+ "070254d4-f9aa-46d3-9415-fae561dee4f9"
+ ],
+ "x-ms-correlation-request-id": [
+ "070254d4-f9aa-46d3-9415-fae561dee4f9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190729Z:070254d4-f9aa-46d3-9415-fae561dee4f9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:28 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6da7d18a-ad54-4e90-80d3-2a448f30a616"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11435"
+ ],
+ "x-ms-request-id": [
+ "1748d4ab-808b-451c-9d9b-43157550a638"
+ ],
+ "x-ms-correlation-request-id": [
+ "1748d4ab-808b-451c-9d9b-43157550a638"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190729Z:1748d4ab-808b-451c-9d9b-43157550a638"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:28 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4fe31c25-6824-47b1-be7d-539404bd8666"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11433"
+ ],
+ "x-ms-request-id": [
+ "d2e16345-10e4-4873-b852-5164be449dc9"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2e16345-10e4-4873-b852-5164be449dc9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190730Z:d2e16345-10e4-4873-b852-5164be449dc9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60a817ef-f164-48d4-844c-e079317501f8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11431"
+ ],
+ "x-ms-request-id": [
+ "e0a4cf39-e9c3-400d-bdec-52dbfff234f3"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0a4cf39-e9c3-400d-bdec-52dbfff234f3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190730Z:e0a4cf39-e9c3-400d-bdec-52dbfff234f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b092c44-5210-405a-b886-fa3fedfaafab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11429"
+ ],
+ "x-ms-request-id": [
+ "d84d345b-7200-4877-a90d-2a1b45979994"
+ ],
+ "x-ms-correlation-request-id": [
+ "d84d345b-7200-4877-a90d-2a1b45979994"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190731Z:d84d345b-7200-4877-a90d-2a1b45979994"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c2acbca8-068c-49f6-beb5-ad03134a52c9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11427"
+ ],
+ "x-ms-request-id": [
+ "110ad4d0-c550-4c52-be6b-f5b711ed72ae"
+ ],
+ "x-ms-correlation-request-id": [
+ "110ad4d0-c550-4c52-be6b-f5b711ed72ae"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190731Z:110ad4d0-c550-4c52-be6b-f5b711ed72ae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "51d17b09-2e04-427b-b008-177015d5bc52"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11425"
+ ],
+ "x-ms-request-id": [
+ "457b6e29-7a95-4d11-9a6a-c7c5a7157239"
+ ],
+ "x-ms-correlation-request-id": [
+ "457b6e29-7a95-4d11-9a6a-c7c5a7157239"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190731Z:457b6e29-7a95-4d11-9a6a-c7c5a7157239"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c50e33ef-ac40-423b-8dbb-0bd9f0f69acd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11423"
+ ],
+ "x-ms-request-id": [
+ "533b3845-ddb5-4201-80e4-62ea012af344"
+ ],
+ "x-ms-correlation-request-id": [
+ "533b3845-ddb5-4201-80e4-62ea012af344"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190732Z:533b3845-ddb5-4201-80e4-62ea012af344"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ca4504ed-b339-46c9-b8ad-65c59ba56dcb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11421"
+ ],
+ "x-ms-request-id": [
+ "0e769428-9f0f-4a9c-b27e-b6d9432adcaa"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e769428-9f0f-4a9c-b27e-b6d9432adcaa"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190732Z:0e769428-9f0f-4a9c-b27e-b6d9432adcaa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "96e1e16d-c4b9-489b-9872-bfd3a20baf10"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11419"
+ ],
+ "x-ms-request-id": [
+ "7b114ace-dfec-43b3-af99-5e497949c3eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b114ace-dfec-43b3-af99-5e497949c3eb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190733Z:7b114ace-dfec-43b3-af99-5e497949c3eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b2a31b34-361a-4b10-822c-2cdaa29c382c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11417"
+ ],
+ "x-ms-request-id": [
+ "a8f763ce-49a5-4eec-9633-ee49c723e972"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8f763ce-49a5-4eec-9633-ee49c723e972"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190733Z:a8f763ce-49a5-4eec-9633-ee49c723e972"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03ae78a8-2370-40cc-b68f-6de5f3d180be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11415"
+ ],
+ "x-ms-request-id": [
+ "5f20fbd0-07bc-4e81-903d-f21ef9427e0e"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f20fbd0-07bc-4e81-903d-f21ef9427e0e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190734Z:5f20fbd0-07bc-4e81-903d-f21ef9427e0e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0abd193d-5761-4050-8b00-bcc825ef72e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11413"
+ ],
+ "x-ms-request-id": [
+ "7781a2bc-d5fc-44fc-b0c4-0f946cac1926"
+ ],
+ "x-ms-correlation-request-id": [
+ "7781a2bc-d5fc-44fc-b0c4-0f946cac1926"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190734Z:7781a2bc-d5fc-44fc-b0c4-0f946cac1926"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7d75173-9651-4488-8a68-33a94d778527"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11411"
+ ],
+ "x-ms-request-id": [
+ "d3462f6d-6434-4f04-8139-b7f153dc8d41"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3462f6d-6434-4f04-8139-b7f153dc8d41"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190734Z:d3462f6d-6434-4f04-8139-b7f153dc8d41"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "45c899de-9c5b-4bea-86e0-95b4276b7bba"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11409"
+ ],
+ "x-ms-request-id": [
+ "b5392816-caa7-4b35-a89f-0c39ae049f3f"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5392816-caa7-4b35-a89f-0c39ae049f3f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190735Z:b5392816-caa7-4b35-a89f-0c39ae049f3f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "25dc2c85-4f1f-454c-84a9-d5ae38ff9cd4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11407"
+ ],
+ "x-ms-request-id": [
+ "7c46290c-ad04-4a94-94da-7d9667c1015c"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c46290c-ad04-4a94-94da-7d9667c1015c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190735Z:7c46290c-ad04-4a94-94da-7d9667c1015c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff0563c9-f499-451c-9e5a-09d0c6e35d98"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11405"
+ ],
+ "x-ms-request-id": [
+ "ca85f1ef-afec-40cf-94b1-90fbb973fdb4"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca85f1ef-afec-40cf-94b1-90fbb973fdb4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190736Z:ca85f1ef-afec-40cf-94b1-90fbb973fdb4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "156458e8-c4c4-49f9-bc47-121864808d06"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11403"
+ ],
+ "x-ms-request-id": [
+ "13adb2ef-3801-4983-b75e-e6fad16713a4"
+ ],
+ "x-ms-correlation-request-id": [
+ "13adb2ef-3801-4983-b75e-e6fad16713a4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190736Z:13adb2ef-3801-4983-b75e-e6fad16713a4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b647c914-2ad8-44d1-93d3-6adf026c66a8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11401"
+ ],
+ "x-ms-request-id": [
+ "867a4c96-3566-4262-82b3-1c7d4d093d4c"
+ ],
+ "x-ms-correlation-request-id": [
+ "867a4c96-3566-4262-82b3-1c7d4d093d4c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190737Z:867a4c96-3566-4262-82b3-1c7d4d093d4c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/deployments/ps710/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9kZXBsb3ltZW50cy9wczcxMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de1b52a3-c547-4d54-887a-09db756b13d6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11399"
+ ],
+ "x-ms-request-id": [
+ "79e4414b-18e0-42e4-984a-c3df373dcf0e"
+ ],
+ "x-ms-correlation-request-id": [
+ "79e4414b-18e0-42e4-984a-c3df373dcf0e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190737Z:79e4414b-18e0-42e4-984a-c3df373dcf0e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:07:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710/operations/96F22D378752492A\",\r\n \"operationId\": \"96F22D378752492A\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:22.0101404Z\",\r\n \"duration\": \"PT1M53.1288395S\",\r\n \"trackingId\": \"6227b782-7ccc-4844-954f-5828eb9e154e\",\r\n \"serviceRequestId\": \"132633c4-a648-4ddc-bc4b-a831831aed9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b1e2db68-396c-463d-843f-484629fb0905"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "c65ae4ac-6f96-444a-96f7-05bad8bacdeb"
+ ],
+ "x-ms-correlation-request-id": [
+ "c65ae4ac-6f96-444a-96f7-05bad8bacdeb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190528Z:c65ae4ac-6f96-444a-96f7-05bad8bacdeb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:28 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70e899a1-4f8e-4d7a-b705-4158b55bc496"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "b31a3c9d-69c0-4f64-8842-8b94393db2af"
+ ],
+ "x-ms-correlation-request-id": [
+ "b31a3c9d-69c0-4f64-8842-8b94393db2af"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190529Z:b31a3c9d-69c0-4f64-8842-8b94393db2af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7a5ae76-097f-463c-853e-7c0ce891711c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "57a29035-17a3-43bc-8d21-3c82d48a6160"
+ ],
+ "x-ms-correlation-request-id": [
+ "57a29035-17a3-43bc-8d21-3c82d48a6160"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190529Z:57a29035-17a3-43bc-8d21-3c82d48a6160"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6f89807-42ef-4522-b669-4f99f583e72f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "c77594df-9da6-45fe-adc6-076f60af02a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "c77594df-9da6-45fe-adc6-076f60af02a7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190530Z:c77594df-9da6-45fe-adc6-076f60af02a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f7a4b26-7fb5-488f-8ade-acee09f860e2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "53611214-4594-4192-bc65-843b13ef5bec"
+ ],
+ "x-ms-correlation-request-id": [
+ "53611214-4594-4192-bc65-843b13ef5bec"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190530Z:53611214-4594-4192-bc65-843b13ef5bec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ba213865-8599-499f-91bf-b6573f3c8e7d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "0eaa842a-73ae-431e-90ee-3edbad6521d1"
+ ],
+ "x-ms-correlation-request-id": [
+ "0eaa842a-73ae-431e-90ee-3edbad6521d1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190531Z:0eaa842a-73ae-431e-90ee-3edbad6521d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0beafa4e-12ef-4738-a52a-64253b4ed0c2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "6f304c6d-25df-429b-841a-2a0f8176c7b2"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f304c6d-25df-429b-841a-2a0f8176c7b2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190531Z:6f304c6d-25df-429b-841a-2a0f8176c7b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "767d03be-dc3b-4f62-a28a-c74c054228d8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "36250f55-8b1e-4ca7-862a-479b87a191a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "36250f55-8b1e-4ca7-862a-479b87a191a3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190531Z:36250f55-8b1e-4ca7-862a-479b87a191a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82be6f64-11f5-4d4e-86f7-4dfda5da1993"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "2285f742-9e63-4a90-a94c-ba1acdb1cd0a"
+ ],
+ "x-ms-correlation-request-id": [
+ "2285f742-9e63-4a90-a94c-ba1acdb1cd0a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190532Z:2285f742-9e63-4a90-a94c-ba1acdb1cd0a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:28.8353815Z\",\r\n \"duration\": \"PT1.5624925S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f85ab43-bbd8-45e6-a970-6e82fa004369"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-request-id": [
+ "1cac72e3-3e5d-4b48-b0aa-37bc6190d236"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cac72e3-3e5d-4b48-b0aa-37bc6190d236"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190532Z:1cac72e3-3e5d-4b48-b0aa-37bc6190d236"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:32 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.3393581Z\",\r\n \"duration\": \"PT5.0664691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50ada66a-11fc-4246-91c9-f57d698a4cf0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-request-id": [
+ "26484131-71e7-49f5-93b7-0c0232df3a93"
+ ],
+ "x-ms-correlation-request-id": [
+ "26484131-71e7-49f5-93b7-0c0232df3a93"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190533Z:26484131-71e7-49f5-93b7-0c0232df3a93"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:32 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8588843-f03a-4793-aedc-dde08f3a7156"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-request-id": [
+ "1b858990-9dad-4c78-a2ae-60f630ddd323"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b858990-9dad-4c78-a2ae-60f630ddd323"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190533Z:1b858990-9dad-4c78-a2ae-60f630ddd323"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "32cefcb4-e9d9-4916-993a-418636d8db21"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-request-id": [
+ "10cf046c-bfca-46f4-a7fa-0d02ff991d36"
+ ],
+ "x-ms-correlation-request-id": [
+ "10cf046c-bfca-46f4-a7fa-0d02ff991d36"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190534Z:10cf046c-bfca-46f4-a7fa-0d02ff991d36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b05ab96d-c031-42f8-9bc7-1554a7b4f8e4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-request-id": [
+ "12f121ea-5212-45f0-ad2f-79ad2044c67b"
+ ],
+ "x-ms-correlation-request-id": [
+ "12f121ea-5212-45f0-ad2f-79ad2044c67b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190534Z:12f121ea-5212-45f0-ad2f-79ad2044c67b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5dc0b950-2593-4389-b1f2-d247da11b68b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-request-id": [
+ "de535fe6-5c2b-41a1-9014-81826f3ba93d"
+ ],
+ "x-ms-correlation-request-id": [
+ "de535fe6-5c2b-41a1-9014-81826f3ba93d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190534Z:de535fe6-5c2b-41a1-9014-81826f3ba93d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1cbe2035-3f9e-4f84-bd3c-de23d43ea1f8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-request-id": [
+ "ddd6852e-de01-4dd7-a174-d9cfe1a28898"
+ ],
+ "x-ms-correlation-request-id": [
+ "ddd6852e-de01-4dd7-a174-d9cfe1a28898"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190535Z:ddd6852e-de01-4dd7-a174-d9cfe1a28898"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1dbca817-2b4f-49a6-8c95-948afc759563"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-request-id": [
+ "19ef832c-6f34-419b-a5a4-c377027c5527"
+ ],
+ "x-ms-correlation-request-id": [
+ "19ef832c-6f34-419b-a5a4-c377027c5527"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190535Z:19ef832c-6f34-419b-a5a4-c377027c5527"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6e34fd2-ae17-465e-aa2e-2f9a04fb6cad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-request-id": [
+ "a1060523-fadc-403c-aa2d-b570b78908ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1060523-fadc-403c-aa2d-b570b78908ff"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190536Z:a1060523-fadc-403c-aa2d-b570b78908ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:32.7119132Z\",\r\n \"duration\": \"PT5.4390242S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4f1c58f2-7bff-432d-b98e-862d521525d7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-request-id": [
+ "46d3730d-d671-492d-bc72-fc9e6d87f49a"
+ ],
+ "x-ms-correlation-request-id": [
+ "46d3730d-d671-492d-bc72-fc9e6d87f49a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190536Z:46d3730d-d671-492d-bc72-fc9e6d87f49a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "75dc424c-8640-4a8b-9f12-ad1d0e38c832"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-request-id": [
+ "17544b1a-fe5d-4456-9cea-4ad061eefd24"
+ ],
+ "x-ms-correlation-request-id": [
+ "17544b1a-fe5d-4456-9cea-4ad061eefd24"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190537Z:17544b1a-fe5d-4456-9cea-4ad061eefd24"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39aa3190-9932-4510-bf6c-3ad1739302d2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-request-id": [
+ "ed0b3c1e-3f05-42c9-87ae-f40a153361f8"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed0b3c1e-3f05-42c9-87ae-f40a153361f8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190537Z:ed0b3c1e-3f05-42c9-87ae-f40a153361f8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "75f93e9b-e9fe-4457-ab23-2ef633b221ea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-request-id": [
+ "fbed0486-7c5e-4c88-a6d4-f19546c9b3e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbed0486-7c5e-4c88-a6d4-f19546c9b3e1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190538Z:fbed0486-7c5e-4c88-a6d4-f19546c9b3e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c11af3d0-985e-4045-abaa-18ddd8ba47f6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-request-id": [
+ "394f40bf-3aeb-4383-a724-40c3cf179046"
+ ],
+ "x-ms-correlation-request-id": [
+ "394f40bf-3aeb-4383-a724-40c3cf179046"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190538Z:394f40bf-3aeb-4383-a724-40c3cf179046"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "80a0705a-3f35-4991-9204-4d3c8b1cff4d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-request-id": [
+ "4e03b6de-3b3a-43ce-8501-b551163275b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e03b6de-3b3a-43ce-8501-b551163275b4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190538Z:4e03b6de-3b3a-43ce-8501-b551163275b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "abc15e27-b850-4a8a-a8d7-18e8e2a69acf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-request-id": [
+ "dd3966f0-9b44-4624-97c4-66fed1dca944"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd3966f0-9b44-4624-97c4-66fed1dca944"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190539Z:dd3966f0-9b44-4624-97c4-66fed1dca944"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85c319a9-2493-4b31-b2e6-48777ac19744"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-request-id": [
+ "d3697c9b-2eda-4cd9-8d6b-c22c33c219e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3697c9b-2eda-4cd9-8d6b-c22c33c219e4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190539Z:d3697c9b-2eda-4cd9-8d6b-c22c33c219e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3e2a63b0-e476-42f9-97f5-4a7bc63e0be6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-request-id": [
+ "078de3ef-eb08-46cf-ad11-1b24112d7fc6"
+ ],
+ "x-ms-correlation-request-id": [
+ "078de3ef-eb08-46cf-ad11-1b24112d7fc6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190540Z:078de3ef-eb08-46cf-ad11-1b24112d7fc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1322"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:36.3030016Z\",\r\n \"duration\": \"PT9.0301126S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12f67a7f-bea0-42c1-9eb0-14ddba351d79"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-request-id": [
+ "9405bc7c-9dfe-4505-8ac3-9dc03ed6fe19"
+ ],
+ "x-ms-correlation-request-id": [
+ "9405bc7c-9dfe-4505-8ac3-9dc03ed6fe19"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190540Z:9405bc7c-9dfe-4505-8ac3-9dc03ed6fe19"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "751b54d1-5757-4cf4-9c43-dacb3f6253ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-request-id": [
+ "bb888f22-8b68-45af-bf20-65596223d334"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb888f22-8b68-45af-bf20-65596223d334"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190541Z:bb888f22-8b68-45af-bf20-65596223d334"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aeac84a8-dbbf-4408-bcaf-6b1372f3f3c1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-request-id": [
+ "b427ee2b-9c22-4e5e-850c-4bf46a177ec2"
+ ],
+ "x-ms-correlation-request-id": [
+ "b427ee2b-9c22-4e5e-850c-4bf46a177ec2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190541Z:b427ee2b-9c22-4e5e-850c-4bf46a177ec2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "55ec6b21-2380-4ffc-a28f-14eb0341ed77"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-request-id": [
+ "454f76c9-b458-4b52-95f2-630739250bd0"
+ ],
+ "x-ms-correlation-request-id": [
+ "454f76c9-b458-4b52-95f2-630739250bd0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190541Z:454f76c9-b458-4b52-95f2-630739250bd0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "80272d01-9605-45aa-9df1-a6aa1200053c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-request-id": [
+ "4e4cc895-b170-47a2-aa6a-41435aeb8de1"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e4cc895-b170-47a2-aa6a-41435aeb8de1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190542Z:4e4cc895-b170-47a2-aa6a-41435aeb8de1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e1241c58-d930-425c-a1ac-2a60dc4fcbdd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-request-id": [
+ "13aa2daf-78ce-49f1-aca1-fab595f9df33"
+ ],
+ "x-ms-correlation-request-id": [
+ "13aa2daf-78ce-49f1-aca1-fab595f9df33"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190542Z:13aa2daf-78ce-49f1-aca1-fab595f9df33"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "55086ffc-2a21-40e9-be4a-d52b8a6b5866"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
+ "x-ms-request-id": [
+ "4efeadea-75b1-4301-b43d-471b966e2536"
+ ],
+ "x-ms-correlation-request-id": [
+ "4efeadea-75b1-4301-b43d-471b966e2536"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190543Z:4efeadea-75b1-4301-b43d-471b966e2536"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e9a9745-9a50-4c34-80fb-214795cce2c2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11930"
+ ],
+ "x-ms-request-id": [
+ "f2966025-f18a-4b5f-aaee-137286f7abbd"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2966025-f18a-4b5f-aaee-137286f7abbd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190543Z:f2966025-f18a-4b5f-aaee-137286f7abbd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1c1dc6d2-76ee-4095-a849-cfff37544e2b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11928"
+ ],
+ "x-ms-request-id": [
+ "914fc85b-4362-4337-93aa-87b202c5872c"
+ ],
+ "x-ms-correlation-request-id": [
+ "914fc85b-4362-4337-93aa-87b202c5872c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190544Z:914fc85b-4362-4337-93aa-87b202c5872c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c29e1a9a-7c8f-4e9f-844b-45fbdea3be2e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11926"
+ ],
+ "x-ms-request-id": [
+ "71fd38de-3fec-48d7-8fff-a877364f2c30"
+ ],
+ "x-ms-correlation-request-id": [
+ "71fd38de-3fec-48d7-8fff-a877364f2c30"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190544Z:71fd38de-3fec-48d7-8fff-a877364f2c30"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:40.4785429Z\",\r\n \"duration\": \"PT13.2056539S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "884c1305-27ff-48e8-a969-68e5b36d1c8f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11924"
+ ],
+ "x-ms-request-id": [
+ "74324fd3-89f0-40ff-8d9e-8ed5bef4d452"
+ ],
+ "x-ms-correlation-request-id": [
+ "74324fd3-89f0-40ff-8d9e-8ed5bef4d452"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190545Z:74324fd3-89f0-40ff-8d9e-8ed5bef4d452"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "53988f5e-9b34-43f7-aa16-35aba8e3699f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11922"
+ ],
+ "x-ms-request-id": [
+ "60c30ca8-89be-494e-9c37-1a1aaa366a2f"
+ ],
+ "x-ms-correlation-request-id": [
+ "60c30ca8-89be-494e-9c37-1a1aaa366a2f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190545Z:60c30ca8-89be-494e-9c37-1a1aaa366a2f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bec2829b-bb4f-4f48-832b-e705461a977e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11920"
+ ],
+ "x-ms-request-id": [
+ "eacf0558-6ddf-460a-8614-f7ca47b5bd36"
+ ],
+ "x-ms-correlation-request-id": [
+ "eacf0558-6ddf-460a-8614-f7ca47b5bd36"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190546Z:eacf0558-6ddf-460a-8614-f7ca47b5bd36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b9c307e0-ddb0-4b7e-9ae0-d498e56769cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11918"
+ ],
+ "x-ms-request-id": [
+ "18e0901d-d047-416d-81f5-bf5853ff5b83"
+ ],
+ "x-ms-correlation-request-id": [
+ "18e0901d-d047-416d-81f5-bf5853ff5b83"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190546Z:18e0901d-d047-416d-81f5-bf5853ff5b83"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9a6a4e72-dc48-4c39-a513-8a53a15649ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11916"
+ ],
+ "x-ms-request-id": [
+ "118667f4-32c1-4399-9137-644fbef50e11"
+ ],
+ "x-ms-correlation-request-id": [
+ "118667f4-32c1-4399-9137-644fbef50e11"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190546Z:118667f4-32c1-4399-9137-644fbef50e11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "911c339d-87a0-4d64-bb20-1681c7cb86a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11914"
+ ],
+ "x-ms-request-id": [
+ "f12a5650-5924-42ad-9357-26730fb14600"
+ ],
+ "x-ms-correlation-request-id": [
+ "f12a5650-5924-42ad-9357-26730fb14600"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190547Z:f12a5650-5924-42ad-9357-26730fb14600"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f9ff77a-5df4-4151-adae-815c2a081078"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11912"
+ ],
+ "x-ms-request-id": [
+ "a3f0677c-58ea-4f7b-839d-56f39ad13ef6"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3f0677c-58ea-4f7b-839d-56f39ad13ef6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190547Z:a3f0677c-58ea-4f7b-839d-56f39ad13ef6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "be86c2d7-0ef1-487b-b6a3-ba421cccb602"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11910"
+ ],
+ "x-ms-request-id": [
+ "d40f60b9-ac4c-467c-95d4-47591eb80798"
+ ],
+ "x-ms-correlation-request-id": [
+ "d40f60b9-ac4c-467c-95d4-47591eb80798"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190548Z:d40f60b9-ac4c-467c-95d4-47591eb80798"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60fc2d63-18a8-4ac5-893a-ee06d3f8b22e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11908"
+ ],
+ "x-ms-request-id": [
+ "cd536095-7134-4526-a28e-a0a354ec9ae7"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd536095-7134-4526-a28e-a0a354ec9ae7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190548Z:cd536095-7134-4526-a28e-a0a354ec9ae7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "097b3bcd-104d-4c64-b741-8f243531ef88"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11906"
+ ],
+ "x-ms-request-id": [
+ "09443055-1d18-4e04-85fe-2060474da526"
+ ],
+ "x-ms-correlation-request-id": [
+ "09443055-1d18-4e04-85fe-2060474da526"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190549Z:09443055-1d18-4e04-85fe-2060474da526"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7f36a26-3e9b-436c-8db5-0ab7294da1cd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11904"
+ ],
+ "x-ms-request-id": [
+ "67d22e81-5db2-4f0a-8436-0c011246cb24"
+ ],
+ "x-ms-correlation-request-id": [
+ "67d22e81-5db2-4f0a-8436-0c011246cb24"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190549Z:67d22e81-5db2-4f0a-8436-0c011246cb24"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c31a6ca1-87bb-4c1e-8886-291f1ab73347"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11902"
+ ],
+ "x-ms-request-id": [
+ "371895c5-0ba8-4494-a109-01bb26ca06fa"
+ ],
+ "x-ms-correlation-request-id": [
+ "371895c5-0ba8-4494-a109-01bb26ca06fa"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190549Z:371895c5-0ba8-4494-a109-01bb26ca06fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8548a387-afc7-42b0-be00-d4940cbd07d6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11900"
+ ],
+ "x-ms-request-id": [
+ "29415ef5-a107-4a85-80a9-0dda0828dbe9"
+ ],
+ "x-ms-correlation-request-id": [
+ "29415ef5-a107-4a85-80a9-0dda0828dbe9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190550Z:29415ef5-a107-4a85-80a9-0dda0828dbe9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "def4ebe4-478f-41b4-8a9f-02113060ff37"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11898"
+ ],
+ "x-ms-request-id": [
+ "e649f314-74ce-4252-bb1c-51f6268bea58"
+ ],
+ "x-ms-correlation-request-id": [
+ "e649f314-74ce-4252-bb1c-51f6268bea58"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190550Z:e649f314-74ce-4252-bb1c-51f6268bea58"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:44.8321581Z\",\r\n \"duration\": \"PT17.5592691S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8fdb14e1-ad83-4869-aac0-a09883f13c36"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11896"
+ ],
+ "x-ms-request-id": [
+ "d6ed9710-befc-47e6-b621-0a476da01cb0"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6ed9710-befc-47e6-b621-0a476da01cb0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190551Z:d6ed9710-befc-47e6-b621-0a476da01cb0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "872ba95e-e841-4c29-bc86-049365eb73eb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11894"
+ ],
+ "x-ms-request-id": [
+ "849a063d-d3c9-490f-a5b0-662d49fac354"
+ ],
+ "x-ms-correlation-request-id": [
+ "849a063d-d3c9-490f-a5b0-662d49fac354"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190551Z:849a063d-d3c9-490f-a5b0-662d49fac354"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb41021a-1254-44a1-b866-d9ffe341083d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11892"
+ ],
+ "x-ms-request-id": [
+ "96d8dea1-55e2-4168-9484-883121559e4b"
+ ],
+ "x-ms-correlation-request-id": [
+ "96d8dea1-55e2-4168-9484-883121559e4b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190552Z:96d8dea1-55e2-4168-9484-883121559e4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "28dffaeb-1aa3-4e7b-bb07-f69d2a1874ef"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11890"
+ ],
+ "x-ms-request-id": [
+ "0bf5ad5e-4f11-443c-9272-713c8f40b777"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bf5ad5e-4f11-443c-9272-713c8f40b777"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190552Z:0bf5ad5e-4f11-443c-9272-713c8f40b777"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e529aa33-a569-4e09-a323-02cc61e3d36d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11888"
+ ],
+ "x-ms-request-id": [
+ "f6177cac-0c8d-4031-b2d0-601c3f7c7731"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6177cac-0c8d-4031-b2d0-601c3f7c7731"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190552Z:f6177cac-0c8d-4031-b2d0-601c3f7c7731"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4f64d66b-22ae-4a27-99ea-2b57f93772f0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11886"
+ ],
+ "x-ms-request-id": [
+ "07b6606b-b0de-4cd2-88db-8f7c98a7a5d0"
+ ],
+ "x-ms-correlation-request-id": [
+ "07b6606b-b0de-4cd2-88db-8f7c98a7a5d0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190553Z:07b6606b-b0de-4cd2-88db-8f7c98a7a5d0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c60aefba-c438-4b90-b9be-c9cf462d4ad9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11884"
+ ],
+ "x-ms-request-id": [
+ "176c2e31-1924-4a85-89bf-8b0f7759657e"
+ ],
+ "x-ms-correlation-request-id": [
+ "176c2e31-1924-4a85-89bf-8b0f7759657e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190553Z:176c2e31-1924-4a85-89bf-8b0f7759657e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c051880-b602-47ea-be3d-05bc800fc5bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11882"
+ ],
+ "x-ms-request-id": [
+ "64ae63fd-3c0b-4ddb-96c6-a3f3c263ca64"
+ ],
+ "x-ms-correlation-request-id": [
+ "64ae63fd-3c0b-4ddb-96c6-a3f3c263ca64"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190554Z:64ae63fd-3c0b-4ddb-96c6-a3f3c263ca64"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:53 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c3ceea7-b399-481c-b93d-4812a6020330"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11880"
+ ],
+ "x-ms-request-id": [
+ "85f95b92-2648-4908-ba71-5b525d1d3fb7"
+ ],
+ "x-ms-correlation-request-id": [
+ "85f95b92-2648-4908-ba71-5b525d1d3fb7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190554Z:85f95b92-2648-4908-ba71-5b525d1d3fb7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:53 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "71742358-dcb3-4c9c-bbe5-94a43f93c2c2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11878"
+ ],
+ "x-ms-request-id": [
+ "b2af4c89-d44d-4975-9cec-145ea167146b"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2af4c89-d44d-4975-9cec-145ea167146b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190554Z:b2af4c89-d44d-4975-9cec-145ea167146b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0ae2cbe-d129-44f8-bd78-980cf44121d3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11876"
+ ],
+ "x-ms-request-id": [
+ "13b04d18-8dd3-47be-90c5-a0ad71b4fbc8"
+ ],
+ "x-ms-correlation-request-id": [
+ "13b04d18-8dd3-47be-90c5-a0ad71b4fbc8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190555Z:13b04d18-8dd3-47be-90c5-a0ad71b4fbc8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6fd25d38-2587-41bb-ba21-2c2c19f35c77"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11874"
+ ],
+ "x-ms-request-id": [
+ "35e176c1-3a3b-4a1e-bf9e-55bc3f9c0c0d"
+ ],
+ "x-ms-correlation-request-id": [
+ "35e176c1-3a3b-4a1e-bf9e-55bc3f9c0c0d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190555Z:35e176c1-3a3b-4a1e-bf9e-55bc3f9c0c0d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb96773c-f24c-41af-a7a5-3394f684961d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11872"
+ ],
+ "x-ms-request-id": [
+ "feb38760-0307-4cc9-b29d-945729302642"
+ ],
+ "x-ms-correlation-request-id": [
+ "feb38760-0307-4cc9-b29d-945729302642"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190556Z:feb38760-0307-4cc9-b29d-945729302642"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1a007722-7028-42ec-92f1-2032a5551045"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11870"
+ ],
+ "x-ms-request-id": [
+ "fbd3c9c4-701c-4634-9f73-9843d3947008"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbd3c9c4-701c-4634-9f73-9843d3947008"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190556Z:fbd3c9c4-701c-4634-9f73-9843d3947008"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3c7e1e9f-ac72-4f7b-9368-2034be511bab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11868"
+ ],
+ "x-ms-request-id": [
+ "92785514-f79b-4f2e-9670-34f28eacbc65"
+ ],
+ "x-ms-correlation-request-id": [
+ "92785514-f79b-4f2e-9670-34f28eacbc65"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190556Z:92785514-f79b-4f2e-9670-34f28eacbc65"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fdcbffad-add4-4d88-887c-25160d83df21"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11866"
+ ],
+ "x-ms-request-id": [
+ "f793c1cf-8633-496b-8eb6-93e5aef44cf3"
+ ],
+ "x-ms-correlation-request-id": [
+ "f793c1cf-8633-496b-8eb6-93e5aef44cf3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190557Z:f793c1cf-8633-496b-8eb6-93e5aef44cf3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b52117bd-6d55-4355-8207-4616b1f48bc3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11864"
+ ],
+ "x-ms-request-id": [
+ "0f59bf8d-9739-4777-9562-00b62a51cf3a"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f59bf8d-9739-4777-9562-00b62a51cf3a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190557Z:0f59bf8d-9739-4777-9562-00b62a51cf3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:51.117899Z\",\r\n \"duration\": \"PT23.84501S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d17d888-7dcb-4ab6-a094-071e79942538"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11862"
+ ],
+ "x-ms-request-id": [
+ "766cdb17-fa9e-4bf5-ac48-42f4bfc7db66"
+ ],
+ "x-ms-correlation-request-id": [
+ "766cdb17-fa9e-4bf5-ac48-42f4bfc7db66"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190558Z:766cdb17-fa9e-4bf5-ac48-42f4bfc7db66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60db2c47-3b8b-4826-b152-17c2016b7662"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11860"
+ ],
+ "x-ms-request-id": [
+ "0fee1f8a-e295-40dc-9601-7e485a2bb759"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fee1f8a-e295-40dc-9601-7e485a2bb759"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190558Z:0fee1f8a-e295-40dc-9601-7e485a2bb759"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3143036e-a848-40a4-a797-559ee5ebba93"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11858"
+ ],
+ "x-ms-request-id": [
+ "5e41af0a-019c-43c2-bc47-feb4999e140d"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e41af0a-019c-43c2-bc47-feb4999e140d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190559Z:5e41af0a-019c-43c2-bc47-feb4999e140d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9e4b3b3e-38f6-4714-8547-e432570f9e3c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11856"
+ ],
+ "x-ms-request-id": [
+ "1525bf42-75fc-41e3-aa40-9ba2b166ae91"
+ ],
+ "x-ms-correlation-request-id": [
+ "1525bf42-75fc-41e3-aa40-9ba2b166ae91"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190559Z:1525bf42-75fc-41e3-aa40-9ba2b166ae91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c46cab1-1a9b-434c-adc0-641031d63e95"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11854"
+ ],
+ "x-ms-request-id": [
+ "fa2648b5-8a21-4aa9-9bb7-d0c4e111d29a"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa2648b5-8a21-4aa9-9bb7-d0c4e111d29a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190559Z:fa2648b5-8a21-4aa9-9bb7-d0c4e111d29a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6758d89-4220-4007-b4bd-072a826ed2a0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11852"
+ ],
+ "x-ms-request-id": [
+ "433dce33-cbdb-4fda-bd46-d7b523d1c426"
+ ],
+ "x-ms-correlation-request-id": [
+ "433dce33-cbdb-4fda-bd46-d7b523d1c426"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190600Z:433dce33-cbdb-4fda-bd46-d7b523d1c426"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a08c0b10-8bf0-4d80-a276-75fc3341467c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11850"
+ ],
+ "x-ms-request-id": [
+ "82eb1e56-f7eb-42b5-9ecb-61676a29b970"
+ ],
+ "x-ms-correlation-request-id": [
+ "82eb1e56-f7eb-42b5-9ecb-61676a29b970"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190600Z:82eb1e56-f7eb-42b5-9ecb-61676a29b970"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:05:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1639566b-d32e-4266-841c-8ddca6aec652"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11848"
+ ],
+ "x-ms-request-id": [
+ "80deae70-2ec5-446d-9450-87dcbb13056b"
+ ],
+ "x-ms-correlation-request-id": [
+ "80deae70-2ec5-446d-9450-87dcbb13056b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190601Z:80deae70-2ec5-446d-9450-87dcbb13056b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "49553d4b-4f85-43ef-ae25-7551968f1208"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11846"
+ ],
+ "x-ms-request-id": [
+ "79b56566-0db5-49b6-904e-f57310becff3"
+ ],
+ "x-ms-correlation-request-id": [
+ "79b56566-0db5-49b6-904e-f57310becff3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190601Z:79b56566-0db5-49b6-904e-f57310becff3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2dafe369-809c-4ff8-88df-421d1fbd01f0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11844"
+ ],
+ "x-ms-request-id": [
+ "d333d873-a670-49b5-93e5-b419fb08df7e"
+ ],
+ "x-ms-correlation-request-id": [
+ "d333d873-a670-49b5-93e5-b419fb08df7e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190602Z:d333d873-a670-49b5-93e5-b419fb08df7e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f05c911-b0f2-499c-8d92-212d9b713b5b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11842"
+ ],
+ "x-ms-request-id": [
+ "60d0247b-28c2-4885-aef9-2547ac7215d2"
+ ],
+ "x-ms-correlation-request-id": [
+ "60d0247b-28c2-4885-aef9-2547ac7215d2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190602Z:60d0247b-28c2-4885-aef9-2547ac7215d2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5a896e60-581a-411e-b677-9ae46d3a481a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11840"
+ ],
+ "x-ms-request-id": [
+ "661b2e80-5732-4202-bd7b-9df4b87775a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "661b2e80-5732-4202-bd7b-9df4b87775a7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190602Z:661b2e80-5732-4202-bd7b-9df4b87775a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8d710a4-592d-44fd-9e11-0f9e761c262d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11838"
+ ],
+ "x-ms-request-id": [
+ "cba21b11-bb93-452f-baae-13fd9f72ef36"
+ ],
+ "x-ms-correlation-request-id": [
+ "cba21b11-bb93-452f-baae-13fd9f72ef36"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190603Z:cba21b11-bb93-452f-baae-13fd9f72ef36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae629497-48a1-43d9-9a0c-1453099ab048"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11836"
+ ],
+ "x-ms-request-id": [
+ "1269f06b-0437-4d99-8451-187712998b27"
+ ],
+ "x-ms-correlation-request-id": [
+ "1269f06b-0437-4d99-8451-187712998b27"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190603Z:1269f06b-0437-4d99-8451-187712998b27"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0a797c6a-8631-45b2-b0aa-3070c37148a4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11834"
+ ],
+ "x-ms-request-id": [
+ "4db6322f-f59d-46cc-82c5-70a12c798040"
+ ],
+ "x-ms-correlation-request-id": [
+ "4db6322f-f59d-46cc-82c5-70a12c798040"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190604Z:4db6322f-f59d-46cc-82c5-70a12c798040"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d067708-e41a-4c06-8af2-b6e7d1ef3e21"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11832"
+ ],
+ "x-ms-request-id": [
+ "1e1a72b9-9944-498d-a7bd-5d52c4a8b717"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e1a72b9-9944-498d-a7bd-5d52c4a8b717"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190604Z:1e1a72b9-9944-498d-a7bd-5d52c4a8b717"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dcf5d77c-f790-4eb6-b403-52172b6c91e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11830"
+ ],
+ "x-ms-request-id": [
+ "d9205e19-3974-47bf-a50c-f0d9aaeb2db2"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9205e19-3974-47bf-a50c-f0d9aaeb2db2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190605Z:d9205e19-3974-47bf-a50c-f0d9aaeb2db2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e52320cd-86ac-45de-9c4b-592fdf3cf8d0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11828"
+ ],
+ "x-ms-request-id": [
+ "d04717c8-1ccb-4182-b833-3900b6aaacda"
+ ],
+ "x-ms-correlation-request-id": [
+ "d04717c8-1ccb-4182-b833-3900b6aaacda"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190605Z:d04717c8-1ccb-4182-b833-3900b6aaacda"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:05:57.6160416Z\",\r\n \"duration\": \"PT30.3431526S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bef571b2-48a2-4fbc-b757-30774516d37d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11826"
+ ],
+ "x-ms-request-id": [
+ "edd0b7e8-522e-4c67-aefa-fa90adfe6b23"
+ ],
+ "x-ms-correlation-request-id": [
+ "edd0b7e8-522e-4c67-aefa-fa90adfe6b23"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190606Z:edd0b7e8-522e-4c67-aefa-fa90adfe6b23"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e97f0620-af8e-48e4-a63a-40cf7862b148"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11824"
+ ],
+ "x-ms-request-id": [
+ "ac1ca6a0-ef7f-41ed-817d-db619d54b96f"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac1ca6a0-ef7f-41ed-817d-db619d54b96f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190606Z:ac1ca6a0-ef7f-41ed-817d-db619d54b96f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67efdaa0-4507-4996-8973-0c961344fb9c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11822"
+ ],
+ "x-ms-request-id": [
+ "89b7a70a-99fd-46aa-944a-10816d9a3d01"
+ ],
+ "x-ms-correlation-request-id": [
+ "89b7a70a-99fd-46aa-944a-10816d9a3d01"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190606Z:89b7a70a-99fd-46aa-944a-10816d9a3d01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73a5fc32-c717-44c1-b410-4137dee18ee1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11820"
+ ],
+ "x-ms-request-id": [
+ "a26f9731-4c2b-4222-87ed-dcd78d5bee76"
+ ],
+ "x-ms-correlation-request-id": [
+ "a26f9731-4c2b-4222-87ed-dcd78d5bee76"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190607Z:a26f9731-4c2b-4222-87ed-dcd78d5bee76"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3141c1f-b050-443d-a2ce-a2a638453259"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11818"
+ ],
+ "x-ms-request-id": [
+ "d049d8ce-86a3-4864-80e6-1b9d54dc83b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "d049d8ce-86a3-4864-80e6-1b9d54dc83b8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190607Z:d049d8ce-86a3-4864-80e6-1b9d54dc83b8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:06 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "577c4b10-96f3-4139-a562-b65818baf5d7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11816"
+ ],
+ "x-ms-request-id": [
+ "dcaf406e-0f7c-480f-a36a-bdb7144b390d"
+ ],
+ "x-ms-correlation-request-id": [
+ "dcaf406e-0f7c-480f-a36a-bdb7144b390d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190608Z:dcaf406e-0f7c-480f-a36a-bdb7144b390d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "83c47f54-7856-4db9-920c-1a38a97bb46e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11814"
+ ],
+ "x-ms-request-id": [
+ "f35d3274-6ee1-4905-baec-f2a400f78f92"
+ ],
+ "x-ms-correlation-request-id": [
+ "f35d3274-6ee1-4905-baec-f2a400f78f92"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190608Z:f35d3274-6ee1-4905-baec-f2a400f78f92"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "891fc49b-f3f9-4965-9155-779ca9fa84e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11812"
+ ],
+ "x-ms-request-id": [
+ "960715bd-f341-4602-b69d-007213011990"
+ ],
+ "x-ms-correlation-request-id": [
+ "960715bd-f341-4602-b69d-007213011990"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190609Z:960715bd-f341-4602-b69d-007213011990"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fa05385a-af5e-46c8-80cd-e0b15e910976"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11810"
+ ],
+ "x-ms-request-id": [
+ "6104b65a-dd5f-48e5-acb6-e871cbc99a90"
+ ],
+ "x-ms-correlation-request-id": [
+ "6104b65a-dd5f-48e5-acb6-e871cbc99a90"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190609Z:6104b65a-dd5f-48e5-acb6-e871cbc99a90"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "93efee58-fe3a-40ef-afc0-74e455aad2b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11808"
+ ],
+ "x-ms-request-id": [
+ "63287ddf-4e37-4f16-9cd4-555d92088abc"
+ ],
+ "x-ms-correlation-request-id": [
+ "63287ddf-4e37-4f16-9cd4-555d92088abc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190610Z:63287ddf-4e37-4f16-9cd4-555d92088abc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9f1bda1-63b1-44e7-824e-6eaff2305390"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11806"
+ ],
+ "x-ms-request-id": [
+ "4e8298a7-a7a2-4473-80d4-eaf2d51b12e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e8298a7-a7a2-4473-80d4-eaf2d51b12e4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190610Z:4e8298a7-a7a2-4473-80d4-eaf2d51b12e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb632076-9443-4d77-8478-5cc41aa6c7a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11804"
+ ],
+ "x-ms-request-id": [
+ "c8c14229-d6b7-454c-aeb1-51dfd82edfdb"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8c14229-d6b7-454c-aeb1-51dfd82edfdb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190611Z:c8c14229-d6b7-454c-aeb1-51dfd82edfdb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5f5110d8-c2b8-4d21-ae0d-7e65f485787d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11802"
+ ],
+ "x-ms-request-id": [
+ "bd2f4c5e-016d-4003-9247-7e2a63547795"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd2f4c5e-016d-4003-9247-7e2a63547795"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190611Z:bd2f4c5e-016d-4003-9247-7e2a63547795"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6be6424f-2ebf-44e6-ab6c-5495dab46654"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11800"
+ ],
+ "x-ms-request-id": [
+ "780a4e64-dfa8-41bd-8b99-0f3cd837fb73"
+ ],
+ "x-ms-correlation-request-id": [
+ "780a4e64-dfa8-41bd-8b99-0f3cd837fb73"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190611Z:780a4e64-dfa8-41bd-8b99-0f3cd837fb73"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81440461-67ae-4695-93e9-a7380f609a68"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11798"
+ ],
+ "x-ms-request-id": [
+ "205c706c-ab75-4935-87ab-9a3626b32d31"
+ ],
+ "x-ms-correlation-request-id": [
+ "205c706c-ab75-4935-87ab-9a3626b32d31"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190612Z:205c706c-ab75-4935-87ab-9a3626b32d31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7f224a3d-05f1-44c7-98e7-b8b627c8d2ad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11796"
+ ],
+ "x-ms-request-id": [
+ "50be5f31-4812-49b7-b53d-ba916602e384"
+ ],
+ "x-ms-correlation-request-id": [
+ "50be5f31-4812-49b7-b53d-ba916602e384"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190612Z:50be5f31-4812-49b7-b53d-ba916602e384"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "184fb079-511d-4593-ae54-0bc58d9497fe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11794"
+ ],
+ "x-ms-request-id": [
+ "cff5edf1-8dd9-4936-a2b8-aa66df1f490b"
+ ],
+ "x-ms-correlation-request-id": [
+ "cff5edf1-8dd9-4936-a2b8-aa66df1f490b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190613Z:cff5edf1-8dd9-4936-a2b8-aa66df1f490b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2ca0159a-9e71-4801-8f73-aca865d6f021"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11792"
+ ],
+ "x-ms-request-id": [
+ "d22306f5-d91e-461f-82e4-e8be9892c5c1"
+ ],
+ "x-ms-correlation-request-id": [
+ "d22306f5-d91e-461f-82e4-e8be9892c5c1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190613Z:d22306f5-d91e-461f-82e4-e8be9892c5c1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "433e58d9-4dcb-4bfc-9910-75b5bedbd47b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11790"
+ ],
+ "x-ms-request-id": [
+ "4a2f179a-9d07-45e9-b2a8-c5e0f6e76853"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a2f179a-9d07-45e9-b2a8-c5e0f6e76853"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200519T190614Z:4a2f179a-9d07-45e9-b2a8-c5e0f6e76853"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 19 May 2020 19:06:14 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1323"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc4cc320-9098-491b-ad44-3ba8849f812f"
+ "897eb17a-31c3-462d-8fd9-ef908f20528b"
],
"Accept-Language": [
"en-US"
@@ -12458,17 +25940,20 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11615"
+ "11788"
],
"x-ms-request-id": [
- "7e1ee452-d1b3-4d44-b856-861179277352"
+ "caf32267-8823-41de-b716-ec53a5fd708b"
],
"x-ms-correlation-request-id": [
- "7e1ee452-d1b3-4d44-b856-861179277352"
+ "caf32267-8823-41de-b716-ec53a5fd708b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224332Z:7e1ee452-d1b3-4d44-b856-861179277352"
+ "NORTHCENTRALUS:20200519T190614Z:caf32267-8823-41de-b716-ec53a5fd708b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12477,7 +25962,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:31 GMT"
+ "Tue, 19 May 2020 19:06:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12486,23 +25971,20 @@
"-1"
],
"Content-Length": [
- "828"
- ],
- "Retry-After": [
- "0"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.607558Z\",\r\n \"duration\": \"PT1M5.670077S\",\r\n \"trackingId\": \"f036c9df-6c74-49c6-ae65-ef893b595abc\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:05.6561224Z\",\r\n \"duration\": \"PT38.3832334S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/deployments/ps9886/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9kZXBsb3ltZW50cy9wczk4ODYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8e9d220-7918-4605-8e6f-752b0ae343e6"
+ "7344d29b-d9fb-4ca4-ba73-7f329c01cabb"
],
"Accept-Language": [
"en-US"
@@ -12521,17 +26003,20 @@
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11613"
+ "11786"
],
"x-ms-request-id": [
- "5fcee1c3-7643-419f-a5e9-c3c0765ec0ef"
+ "4984f7e0-0393-4cbd-816e-b4515af41a3e"
],
"x-ms-correlation-request-id": [
- "5fcee1c3-7643-419f-a5e9-c3c0765ec0ef"
+ "4984f7e0-0393-4cbd-816e-b4515af41a3e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224332Z:5fcee1c3-7643-419f-a5e9-c3c0765ec0ef"
+ "NORTHCENTRALUS:20200519T190615Z:4984f7e0-0393-4cbd-816e-b4515af41a3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12540,7 +26025,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:31 GMT"
+ "Tue, 19 May 2020 19:06:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12549,23 +26034,20 @@
"-1"
],
"Content-Length": [
- "1287"
- ],
- "Retry-After": [
- "0"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/D3A025B5BBCCBDD6\",\r\n \"operationId\": \"D3A025B5BBCCBDD6\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:43:31.9708647Z\",\r\n \"duration\": \"PT1M18.0333837S\",\r\n \"trackingId\": \"3d734f8a-7769-43c2-a6bf-3e2297027c08\",\r\n \"serviceRequestId\": \"d024dbde-f1a3-40b5-85de-2e9304e6a057\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886/operations/08586121971534093115\",\r\n \"operationId\": \"08586121971534093115\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:43:32.3012563Z\",\r\n \"duration\": \"PT0.1681698S\",\r\n \"trackingId\": \"691e9844-7162-4921-9eea-2b079b56c06b\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40908872-c342-4d40-9f51-a142220ed81a"
+ "0a25d7fc-530f-4985-943a-7d3617161100"
],
"Accept-Language": [
"en-US"
@@ -12588,16 +26070,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11784"
],
"x-ms-request-id": [
- "46ef7257-4941-4b92-ba73-6b0a5ea5ecf4"
+ "2811e99f-f0fb-45d4-95bd-e6c2f2f15453"
],
"x-ms-correlation-request-id": [
- "46ef7257-4941-4b92-ba73-6b0a5ea5ecf4"
+ "2811e99f-f0fb-45d4-95bd-e6c2f2f15453"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224213Z:46ef7257-4941-4b92-ba73-6b0a5ea5ecf4"
+ "NORTHCENTRALUS:20200519T190615Z:2811e99f-f0fb-45d4-95bd-e6c2f2f15453"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12606,7 +26088,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:13 GMT"
+ "Tue, 19 May 2020 19:06:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12615,20 +26097,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:42:12.7449673Z\",\r\n \"duration\": \"PT0.6766519S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0620160-d327-4e1e-9da7-08abc3feb80e"
+ "9b793926-ef3c-41fa-9aaf-b0cd47efa300"
],
"Accept-Language": [
"en-US"
@@ -12651,16 +26133,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11782"
],
"x-ms-request-id": [
- "684945ff-b565-46ab-95a8-3565caffdbd6"
+ "51da3a32-48d9-4e0b-b07b-a5479b5c6f40"
],
"x-ms-correlation-request-id": [
- "684945ff-b565-46ab-95a8-3565caffdbd6"
+ "51da3a32-48d9-4e0b-b07b-a5479b5c6f40"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224214Z:684945ff-b565-46ab-95a8-3565caffdbd6"
+ "NORTHCENTRALUS:20200519T190615Z:51da3a32-48d9-4e0b-b07b-a5479b5c6f40"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12669,7 +26151,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:13 GMT"
+ "Tue, 19 May 2020 19:06:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12678,20 +26160,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ebbfac9-11ef-4074-b1b2-997c9df926dd"
+ "7861a352-dac0-4845-b71b-f3e6a6a7f96f"
],
"Accept-Language": [
"en-US"
@@ -12714,16 +26196,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11780"
],
"x-ms-request-id": [
- "b72bc94b-867a-44a8-8245-0e87817ff78c"
+ "4bbe5545-40a1-4157-9349-db5b77779413"
],
"x-ms-correlation-request-id": [
- "b72bc94b-867a-44a8-8245-0e87817ff78c"
+ "4bbe5545-40a1-4157-9349-db5b77779413"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224214Z:b72bc94b-867a-44a8-8245-0e87817ff78c"
+ "NORTHCENTRALUS:20200519T190616Z:4bbe5545-40a1-4157-9349-db5b77779413"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12732,7 +26214,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:14 GMT"
+ "Tue, 19 May 2020 19:06:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12741,20 +26223,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2b582d2-a84d-479f-a5c8-f54bf2d2fdec"
+ "5a671bda-b0ba-48f0-bd62-8d73a9df4bcb"
],
"Accept-Language": [
"en-US"
@@ -12777,16 +26259,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11778"
],
"x-ms-request-id": [
- "c4ae9982-df53-49be-abec-74c6f0a1232a"
+ "41b56b62-a039-4a1a-951f-1f48aa083185"
],
"x-ms-correlation-request-id": [
- "c4ae9982-df53-49be-abec-74c6f0a1232a"
+ "41b56b62-a039-4a1a-951f-1f48aa083185"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224214Z:c4ae9982-df53-49be-abec-74c6f0a1232a"
+ "NORTHCENTRALUS:20200519T190616Z:41b56b62-a039-4a1a-951f-1f48aa083185"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12795,7 +26277,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:14 GMT"
+ "Tue, 19 May 2020 19:06:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12804,20 +26286,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f723ca6-23b9-41d2-b818-487a8fdbb16f"
+ "2d892a9f-b725-43d9-8c73-0357eaa56362"
],
"Accept-Language": [
"en-US"
@@ -12840,16 +26322,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11776"
],
"x-ms-request-id": [
- "b7cd103e-9cb6-4358-9197-a7c535fb2331"
+ "f73c00e7-7336-4cc0-bef6-e0d658b0c109"
],
"x-ms-correlation-request-id": [
- "b7cd103e-9cb6-4358-9197-a7c535fb2331"
+ "f73c00e7-7336-4cc0-bef6-e0d658b0c109"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224215Z:b7cd103e-9cb6-4358-9197-a7c535fb2331"
+ "NORTHCENTRALUS:20200519T190617Z:f73c00e7-7336-4cc0-bef6-e0d658b0c109"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12858,7 +26340,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:15 GMT"
+ "Tue, 19 May 2020 19:06:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12867,20 +26349,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfb80de9-1bf3-4cc5-892e-2f7d90974055"
+ "c6ecf517-faeb-4e85-bc9e-10ff4087a21a"
],
"Accept-Language": [
"en-US"
@@ -12903,16 +26385,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11774"
],
"x-ms-request-id": [
- "e5302d82-d9b1-4c25-a9d8-5b5dab902054"
+ "60e42e8a-b978-4cb5-ac1b-b83e3c3c47c6"
],
"x-ms-correlation-request-id": [
- "e5302d82-d9b1-4c25-a9d8-5b5dab902054"
+ "60e42e8a-b978-4cb5-ac1b-b83e3c3c47c6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224215Z:e5302d82-d9b1-4c25-a9d8-5b5dab902054"
+ "NORTHCENTRALUS:20200519T190617Z:60e42e8a-b978-4cb5-ac1b-b83e3c3c47c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12921,7 +26403,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:15 GMT"
+ "Tue, 19 May 2020 19:06:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12930,20 +26412,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b97b81ed-219a-4344-a7f8-5560d1a1cf10"
+ "7b28aa31-2270-402c-abbc-6fc63ff5ad3f"
],
"Accept-Language": [
"en-US"
@@ -12966,16 +26448,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11772"
],
"x-ms-request-id": [
- "9b090c19-4e7c-4fb8-ba3b-0e95416d4ba2"
+ "2744eb11-8226-4837-b9bd-12d55d5cfc34"
],
"x-ms-correlation-request-id": [
- "9b090c19-4e7c-4fb8-ba3b-0e95416d4ba2"
+ "2744eb11-8226-4837-b9bd-12d55d5cfc34"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224215Z:9b090c19-4e7c-4fb8-ba3b-0e95416d4ba2"
+ "NORTHCENTRALUS:20200519T190618Z:2744eb11-8226-4837-b9bd-12d55d5cfc34"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12984,7 +26466,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:15 GMT"
+ "Tue, 19 May 2020 19:06:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12993,20 +26475,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e67dd83-d102-4a59-84f9-9c9961721bc0"
+ "5e68712f-b5b1-438a-b1d7-250edfa2aa13"
],
"Accept-Language": [
"en-US"
@@ -13029,16 +26511,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11770"
],
"x-ms-request-id": [
- "d6953212-9e56-4a68-9bbd-e2a53af22d78"
+ "aa05a137-7daf-4066-954a-7da71c03ca52"
],
"x-ms-correlation-request-id": [
- "d6953212-9e56-4a68-9bbd-e2a53af22d78"
+ "aa05a137-7daf-4066-954a-7da71c03ca52"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224216Z:d6953212-9e56-4a68-9bbd-e2a53af22d78"
+ "NORTHCENTRALUS:20200519T190618Z:aa05a137-7daf-4066-954a-7da71c03ca52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13047,7 +26529,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:16 GMT"
+ "Tue, 19 May 2020 19:06:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13056,20 +26538,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b446f15c-74a2-4812-aced-08af6b1c315a"
+ "cb9c7b81-8e14-4c53-b4d1-79da726c5dcf"
],
"Accept-Language": [
"en-US"
@@ -13092,16 +26574,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11768"
],
"x-ms-request-id": [
- "5f41daa2-52ad-45e8-aef3-c77bebd54a2a"
+ "88651446-737f-47da-986c-9f56c3a1ba34"
],
"x-ms-correlation-request-id": [
- "5f41daa2-52ad-45e8-aef3-c77bebd54a2a"
+ "88651446-737f-47da-986c-9f56c3a1ba34"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224216Z:5f41daa2-52ad-45e8-aef3-c77bebd54a2a"
+ "NORTHCENTRALUS:20200519T190619Z:88651446-737f-47da-986c-9f56c3a1ba34"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13110,7 +26592,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:16 GMT"
+ "Tue, 19 May 2020 19:06:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13119,20 +26601,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9c82010-2ce2-46a3-88e9-4ee654b1f247"
+ "52408bf0-a176-4b4e-ba60-5a37eb91c2bf"
],
"Accept-Language": [
"en-US"
@@ -13155,16 +26637,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11766"
],
"x-ms-request-id": [
- "6b95e459-c058-422f-a8d9-51e4871285e1"
+ "c2b9b254-cd29-46a8-b854-06afaaa70c63"
],
"x-ms-correlation-request-id": [
- "6b95e459-c058-422f-a8d9-51e4871285e1"
+ "c2b9b254-cd29-46a8-b854-06afaaa70c63"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224216Z:6b95e459-c058-422f-a8d9-51e4871285e1"
+ "NORTHCENTRALUS:20200519T190619Z:c2b9b254-cd29-46a8-b854-06afaaa70c63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13173,7 +26655,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:16 GMT"
+ "Tue, 19 May 2020 19:06:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13182,20 +26664,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a3c69a3-8d44-4237-bddb-2d6ed71addf7"
+ "08762fb7-dc2f-4149-ab91-5fe61bfa696d"
],
"Accept-Language": [
"en-US"
@@ -13218,16 +26700,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11764"
],
"x-ms-request-id": [
- "1e194042-6ad2-4ab5-8442-0431cc168a10"
+ "2638ec65-9cdb-40fd-a2a7-76829e4c50c7"
],
"x-ms-correlation-request-id": [
- "1e194042-6ad2-4ab5-8442-0431cc168a10"
+ "2638ec65-9cdb-40fd-a2a7-76829e4c50c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224217Z:1e194042-6ad2-4ab5-8442-0431cc168a10"
+ "NORTHCENTRALUS:20200519T190620Z:2638ec65-9cdb-40fd-a2a7-76829e4c50c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13236,7 +26718,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:17 GMT"
+ "Tue, 19 May 2020 19:06:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13245,20 +26727,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5def45d3-d677-4f91-ab06-58103baa72e2"
+ "9593d3cd-3010-448f-926a-544015cca50c"
],
"Accept-Language": [
"en-US"
@@ -13281,16 +26763,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11762"
],
"x-ms-request-id": [
- "ad09c873-2b04-4c47-8fc1-c96a3605ca73"
+ "1090be61-147b-4bba-9d45-8fe5862a4a66"
],
"x-ms-correlation-request-id": [
- "ad09c873-2b04-4c47-8fc1-c96a3605ca73"
+ "1090be61-147b-4bba-9d45-8fe5862a4a66"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224217Z:ad09c873-2b04-4c47-8fc1-c96a3605ca73"
+ "NORTHCENTRALUS:20200519T190620Z:1090be61-147b-4bba-9d45-8fe5862a4a66"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13299,7 +26781,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:17 GMT"
+ "Tue, 19 May 2020 19:06:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13308,20 +26790,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5eda03f4-b175-416b-9b6f-ed4e922aa059"
+ "6aaeb15b-7bde-44a8-8361-0f606ec53143"
],
"Accept-Language": [
"en-US"
@@ -13344,16 +26826,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11760"
],
"x-ms-request-id": [
- "7fce01a6-cea4-40f3-8781-ebfe45675a40"
+ "c382757c-fa82-4815-ae5a-53a8f1ed5a11"
],
"x-ms-correlation-request-id": [
- "7fce01a6-cea4-40f3-8781-ebfe45675a40"
+ "c382757c-fa82-4815-ae5a-53a8f1ed5a11"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224218Z:7fce01a6-cea4-40f3-8781-ebfe45675a40"
+ "NORTHCENTRALUS:20200519T190621Z:c382757c-fa82-4815-ae5a-53a8f1ed5a11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13362,7 +26844,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:17 GMT"
+ "Tue, 19 May 2020 19:06:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13371,20 +26853,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:13.7110209Z\",\r\n \"duration\": \"PT1.6427055S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ab0f8c9-4130-42e9-b922-8d70042338ce"
+ "308cd550-4d77-40aa-9920-a0fe18cfae42"
],
"Accept-Language": [
"en-US"
@@ -13407,16 +26889,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11758"
],
"x-ms-request-id": [
- "73b28fbd-6a81-47ee-a101-7aa554ff13ac"
+ "024a433e-8a67-405c-bffc-0457f75fc441"
],
"x-ms-correlation-request-id": [
- "73b28fbd-6a81-47ee-a101-7aa554ff13ac"
+ "024a433e-8a67-405c-bffc-0457f75fc441"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224218Z:73b28fbd-6a81-47ee-a101-7aa554ff13ac"
+ "NORTHCENTRALUS:20200519T190621Z:024a433e-8a67-405c-bffc-0457f75fc441"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13425,7 +26907,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:18 GMT"
+ "Tue, 19 May 2020 19:06:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13437,17 +26919,17 @@
"1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:17.975517Z\",\r\n \"duration\": \"PT5.9072016S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ac81063-8435-4fb0-8195-0238ba0fb8d3"
+ "e6269606-af5a-45ef-aa09-f296341108ff"
],
"Accept-Language": [
"en-US"
@@ -13470,16 +26952,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11756"
],
"x-ms-request-id": [
- "45068635-caf2-4747-a655-4092e7bdb45e"
+ "bbb71d62-df7f-4321-b87c-b5d3a68f5931"
],
"x-ms-correlation-request-id": [
- "45068635-caf2-4747-a655-4092e7bdb45e"
+ "bbb71d62-df7f-4321-b87c-b5d3a68f5931"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224218Z:45068635-caf2-4747-a655-4092e7bdb45e"
+ "NORTHCENTRALUS:20200519T190621Z:bbb71d62-df7f-4321-b87c-b5d3a68f5931"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13488,7 +26970,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:18 GMT"
+ "Tue, 19 May 2020 19:06:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13497,20 +26979,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.3742849Z\",\r\n \"duration\": \"PT6.3059695S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f50dce8-52e3-4605-ac1d-54bdd87c0767"
+ "fca08326-db70-4ed2-ac7a-d57ce706c885"
],
"Accept-Language": [
"en-US"
@@ -13533,16 +27015,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11754"
],
"x-ms-request-id": [
- "78cabb6e-a448-4bb3-ac1d-04d91a3b86e2"
+ "39ea98e6-d16b-413c-9172-b26ce28e95b6"
],
"x-ms-correlation-request-id": [
- "78cabb6e-a448-4bb3-ac1d-04d91a3b86e2"
+ "39ea98e6-d16b-413c-9172-b26ce28e95b6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224219Z:78cabb6e-a448-4bb3-ac1d-04d91a3b86e2"
+ "NORTHCENTRALUS:20200519T190622Z:39ea98e6-d16b-413c-9172-b26ce28e95b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13551,7 +27033,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:19 GMT"
+ "Tue, 19 May 2020 19:06:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13560,20 +27042,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.8155006Z\",\r\n \"duration\": \"PT6.7471852S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7917c428-4d44-4172-b77c-e17b68bee148"
+ "b36504e3-22d6-42a0-b6f7-e8a0004a2bf1"
],
"Accept-Language": [
"en-US"
@@ -13596,16 +27078,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11752"
],
"x-ms-request-id": [
- "64820d2b-0300-42c0-82b3-af79929d0358"
+ "0a92e861-2aba-4ae8-aab1-3275c684085c"
],
"x-ms-correlation-request-id": [
- "64820d2b-0300-42c0-82b3-af79929d0358"
+ "0a92e861-2aba-4ae8-aab1-3275c684085c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224219Z:64820d2b-0300-42c0-82b3-af79929d0358"
+ "NORTHCENTRALUS:20200519T190622Z:0a92e861-2aba-4ae8-aab1-3275c684085c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13614,7 +27096,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:19 GMT"
+ "Tue, 19 May 2020 19:06:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13623,20 +27105,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.8155006Z\",\r\n \"duration\": \"PT6.7471852S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67632801-b449-459e-8f40-e17cb6e03fb8"
+ "7dca81aa-aeaf-429e-811b-307a59472b46"
],
"Accept-Language": [
"en-US"
@@ -13659,16 +27141,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11750"
],
"x-ms-request-id": [
- "400aaec9-7f83-4cb7-b912-51985dd557a8"
+ "d7afa802-f869-4ff4-852c-0b34692406ac"
],
"x-ms-correlation-request-id": [
- "400aaec9-7f83-4cb7-b912-51985dd557a8"
+ "d7afa802-f869-4ff4-852c-0b34692406ac"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224220Z:400aaec9-7f83-4cb7-b912-51985dd557a8"
+ "NORTHCENTRALUS:20200519T190623Z:d7afa802-f869-4ff4-852c-0b34692406ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13677,7 +27159,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:19 GMT"
+ "Tue, 19 May 2020 19:06:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13686,20 +27168,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.8155006Z\",\r\n \"duration\": \"PT6.7471852S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1b06b7a-1427-4537-a095-98bf52dcaf91"
+ "4efc9051-9cfc-4e23-9290-a783f35f2572"
],
"Accept-Language": [
"en-US"
@@ -13722,16 +27204,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11748"
],
"x-ms-request-id": [
- "8cc0bcd2-adb6-4d72-81f9-7d1d3f84bd9a"
+ "b94afd7d-4d83-4c6a-8e1e-fa7cb3084a1a"
],
"x-ms-correlation-request-id": [
- "8cc0bcd2-adb6-4d72-81f9-7d1d3f84bd9a"
+ "b94afd7d-4d83-4c6a-8e1e-fa7cb3084a1a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224220Z:8cc0bcd2-adb6-4d72-81f9-7d1d3f84bd9a"
+ "NORTHCENTRALUS:20200519T190623Z:b94afd7d-4d83-4c6a-8e1e-fa7cb3084a1a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13740,7 +27222,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:20 GMT"
+ "Tue, 19 May 2020 19:06:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13749,20 +27231,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.8155006Z\",\r\n \"duration\": \"PT6.7471852S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d69b607c-238c-49c3-a062-fbba83081ef8"
+ "fe5f7454-bbd9-4985-8099-8acfa7980ae3"
],
"Accept-Language": [
"en-US"
@@ -13785,16 +27267,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11746"
],
"x-ms-request-id": [
- "0c801aaa-33b3-42d8-9145-d70f0f16ab4b"
+ "ab9d4b09-2cf7-4ac3-815c-0d528c42ccd4"
],
"x-ms-correlation-request-id": [
- "0c801aaa-33b3-42d8-9145-d70f0f16ab4b"
+ "ab9d4b09-2cf7-4ac3-815c-0d528c42ccd4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224220Z:0c801aaa-33b3-42d8-9145-d70f0f16ab4b"
+ "NORTHCENTRALUS:20200519T190624Z:ab9d4b09-2cf7-4ac3-815c-0d528c42ccd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13803,7 +27285,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:20 GMT"
+ "Tue, 19 May 2020 19:06:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13812,20 +27294,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.8155006Z\",\r\n \"duration\": \"PT6.7471852S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4f9b6c6-6002-4116-aed4-31381bdbd192"
+ "4f654300-22db-48c0-8d7f-8489cfa7c534"
],
"Accept-Language": [
"en-US"
@@ -13848,16 +27330,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11744"
],
"x-ms-request-id": [
- "e5748f0a-4136-4579-ad8e-bcd305b7f6aa"
+ "c55d53e2-2482-4675-9d51-bf26943747f9"
],
"x-ms-correlation-request-id": [
- "e5748f0a-4136-4579-ad8e-bcd305b7f6aa"
+ "c55d53e2-2482-4675-9d51-bf26943747f9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224221Z:e5748f0a-4136-4579-ad8e-bcd305b7f6aa"
+ "NORTHCENTRALUS:20200519T190624Z:c55d53e2-2482-4675-9d51-bf26943747f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13866,7 +27348,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:21 GMT"
+ "Tue, 19 May 2020 19:06:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13875,20 +27357,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.8155006Z\",\r\n \"duration\": \"PT6.7471852S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01a4215f-c847-41fe-a695-10d34021b4c8"
+ "ad59663b-80d5-4b77-b091-a053408e70fd"
],
"Accept-Language": [
"en-US"
@@ -13911,16 +27393,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11742"
],
"x-ms-request-id": [
- "d4c8edd2-25de-4cfc-8d6b-b2ef8adba399"
+ "10feeb60-e3ac-4137-a92e-f630cc13939f"
],
"x-ms-correlation-request-id": [
- "d4c8edd2-25de-4cfc-8d6b-b2ef8adba399"
+ "10feeb60-e3ac-4137-a92e-f630cc13939f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224221Z:d4c8edd2-25de-4cfc-8d6b-b2ef8adba399"
+ "NORTHCENTRALUS:20200519T190625Z:10feeb60-e3ac-4137-a92e-f630cc13939f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13929,7 +27411,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:21 GMT"
+ "Tue, 19 May 2020 19:06:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13938,20 +27420,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:18.8155006Z\",\r\n \"duration\": \"PT6.7471852S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:14.4400597Z\",\r\n \"duration\": \"PT47.1671707S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab27fc53-1cf6-40bc-b240-70fde417a2f8"
+ "6b64c805-2722-4d67-81f3-bbe27e4f93b3"
],
"Accept-Language": [
"en-US"
@@ -13974,16 +27456,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11740"
],
"x-ms-request-id": [
- "2ea4d191-9cb8-40cf-8bce-fd8c7c74fb19"
+ "a79868af-b52e-4ff1-8082-46659c50953a"
],
"x-ms-correlation-request-id": [
- "2ea4d191-9cb8-40cf-8bce-fd8c7c74fb19"
+ "a79868af-b52e-4ff1-8082-46659c50953a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224222Z:2ea4d191-9cb8-40cf-8bce-fd8c7c74fb19"
+ "NORTHCENTRALUS:20200519T190625Z:a79868af-b52e-4ff1-8082-46659c50953a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13992,7 +27474,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:22 GMT"
+ "Tue, 19 May 2020 19:06:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14001,20 +27483,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9fb6fb2-dd27-4315-9ba3-4e460afd3aa8"
+ "98207d1a-1474-4be6-aa32-e31b3945bbca"
],
"Accept-Language": [
"en-US"
@@ -14037,16 +27519,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11738"
],
"x-ms-request-id": [
- "eef97f65-a504-457b-81b9-542cc3a27577"
+ "efb8863e-ef05-41a1-84b8-1f5f2d5109c5"
],
"x-ms-correlation-request-id": [
- "eef97f65-a504-457b-81b9-542cc3a27577"
+ "efb8863e-ef05-41a1-84b8-1f5f2d5109c5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224222Z:eef97f65-a504-457b-81b9-542cc3a27577"
+ "NORTHCENTRALUS:20200519T190625Z:efb8863e-ef05-41a1-84b8-1f5f2d5109c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14055,7 +27537,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:22 GMT"
+ "Tue, 19 May 2020 19:06:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14064,20 +27546,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "669c91f2-bd46-41b1-8feb-65ae514867d9"
+ "feb6e148-643f-45c1-8040-717cc0987a92"
],
"Accept-Language": [
"en-US"
@@ -14100,16 +27582,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11736"
],
"x-ms-request-id": [
- "2e4301bd-d182-4f94-bb11-a9363079e113"
+ "ee678bf1-91b9-48cc-9640-47394cf30ef7"
],
"x-ms-correlation-request-id": [
- "2e4301bd-d182-4f94-bb11-a9363079e113"
+ "ee678bf1-91b9-48cc-9640-47394cf30ef7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224222Z:2e4301bd-d182-4f94-bb11-a9363079e113"
+ "NORTHCENTRALUS:20200519T190626Z:ee678bf1-91b9-48cc-9640-47394cf30ef7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14118,7 +27600,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:22 GMT"
+ "Tue, 19 May 2020 19:06:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14127,20 +27609,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a77e2ea1-fe0a-4d0b-9881-fa70d0c0f906"
+ "eb3f1d05-e9d3-4703-a8b2-0040400f70d2"
],
"Accept-Language": [
"en-US"
@@ -14163,16 +27645,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
+ "11734"
],
"x-ms-request-id": [
- "92b5154a-2b59-452b-a82a-a0a56e676415"
+ "14193fde-ea06-4bf1-b04a-7f2dd2846896"
],
"x-ms-correlation-request-id": [
- "92b5154a-2b59-452b-a82a-a0a56e676415"
+ "14193fde-ea06-4bf1-b04a-7f2dd2846896"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224223Z:92b5154a-2b59-452b-a82a-a0a56e676415"
+ "NORTHCENTRALUS:20200519T190626Z:14193fde-ea06-4bf1-b04a-7f2dd2846896"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14181,7 +27663,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:23 GMT"
+ "Tue, 19 May 2020 19:06:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14190,20 +27672,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7911b6cb-bae2-4c72-86d9-b6d6051e1fd8"
+ "fe2d01ff-0332-406e-986a-4921a0a7b5e9"
],
"Accept-Language": [
"en-US"
@@ -14226,16 +27708,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11732"
],
"x-ms-request-id": [
- "dec0acdd-2d33-4f61-abe5-6c9767155b8d"
+ "59e8e5c2-7097-4531-acdb-aa1d1741d2d7"
],
"x-ms-correlation-request-id": [
- "dec0acdd-2d33-4f61-abe5-6c9767155b8d"
+ "59e8e5c2-7097-4531-acdb-aa1d1741d2d7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224223Z:dec0acdd-2d33-4f61-abe5-6c9767155b8d"
+ "NORTHCENTRALUS:20200519T190627Z:59e8e5c2-7097-4531-acdb-aa1d1741d2d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14244,7 +27726,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:23 GMT"
+ "Tue, 19 May 2020 19:06:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14253,20 +27735,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e256df0-e942-42de-b3d7-c1b721356c9b"
+ "7b2ec566-b258-445f-9673-cd6d50c32ce9"
],
"Accept-Language": [
"en-US"
@@ -14289,16 +27771,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
+ "11730"
],
"x-ms-request-id": [
- "e4134da5-a714-4ed1-808b-6b550a511920"
+ "d632a23f-ca76-4cc9-957b-a42932100138"
],
"x-ms-correlation-request-id": [
- "e4134da5-a714-4ed1-808b-6b550a511920"
+ "d632a23f-ca76-4cc9-957b-a42932100138"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224224Z:e4134da5-a714-4ed1-808b-6b550a511920"
+ "NORTHCENTRALUS:20200519T190627Z:d632a23f-ca76-4cc9-957b-a42932100138"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14307,7 +27789,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:24 GMT"
+ "Tue, 19 May 2020 19:06:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14316,20 +27798,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f38a6508-599f-4196-92d9-5dd7735cb7cf"
+ "db497ff6-a2fc-44d2-98a1-b7fa503d9b6c"
],
"Accept-Language": [
"en-US"
@@ -14352,16 +27834,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
+ "11728"
],
"x-ms-request-id": [
- "ea005a3d-7d9d-44e6-bdbd-c3b916cd8392"
+ "bff5c364-5fdb-40dd-9915-0b01bbabbff7"
],
"x-ms-correlation-request-id": [
- "ea005a3d-7d9d-44e6-bdbd-c3b916cd8392"
+ "bff5c364-5fdb-40dd-9915-0b01bbabbff7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224224Z:ea005a3d-7d9d-44e6-bdbd-c3b916cd8392"
+ "NORTHCENTRALUS:20200519T190628Z:bff5c364-5fdb-40dd-9915-0b01bbabbff7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14370,7 +27852,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:24 GMT"
+ "Tue, 19 May 2020 19:06:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14379,20 +27861,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd7b1304-4e10-4e20-b5cd-ca78df4da487"
+ "4150beef-56bc-4847-8d5a-6e61a29dff59"
],
"Accept-Language": [
"en-US"
@@ -14415,16 +27897,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
+ "11726"
],
"x-ms-request-id": [
- "3516a326-04b1-4f6a-9253-7c0eea3a6da5"
+ "1fec6504-1bbb-462a-b505-aa38998c46c3"
],
"x-ms-correlation-request-id": [
- "3516a326-04b1-4f6a-9253-7c0eea3a6da5"
+ "1fec6504-1bbb-462a-b505-aa38998c46c3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224225Z:3516a326-04b1-4f6a-9253-7c0eea3a6da5"
+ "NORTHCENTRALUS:20200519T190628Z:1fec6504-1bbb-462a-b505-aa38998c46c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14433,7 +27915,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:24 GMT"
+ "Tue, 19 May 2020 19:06:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14442,20 +27924,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ceb35b7a-85ff-41a3-8806-a5721a37326e"
+ "bf97677d-a578-4a5e-a416-acdfc2d78095"
],
"Accept-Language": [
"en-US"
@@ -14478,16 +27960,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
+ "11724"
],
"x-ms-request-id": [
- "af49a53e-1ae4-48a4-ac53-5e7da3a33326"
+ "0819ce41-bb37-4e1d-90e5-690bb94cf932"
],
"x-ms-correlation-request-id": [
- "af49a53e-1ae4-48a4-ac53-5e7da3a33326"
+ "0819ce41-bb37-4e1d-90e5-690bb94cf932"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224225Z:af49a53e-1ae4-48a4-ac53-5e7da3a33326"
+ "NORTHCENTRALUS:20200519T190628Z:0819ce41-bb37-4e1d-90e5-690bb94cf932"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14496,7 +27978,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:25 GMT"
+ "Tue, 19 May 2020 19:06:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14505,20 +27987,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a23730cc-5cb1-432b-b36b-0477c3f6477f"
+ "e8a98032-4fb6-4a97-b28f-9d42b22def4b"
],
"Accept-Language": [
"en-US"
@@ -14541,16 +28023,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11722"
],
"x-ms-request-id": [
- "62de2491-a6a4-4d7c-8e96-b5540cfcc53a"
+ "13aa2f43-83cb-4bcc-8bf2-5571cbaf8659"
],
"x-ms-correlation-request-id": [
- "62de2491-a6a4-4d7c-8e96-b5540cfcc53a"
+ "13aa2f43-83cb-4bcc-8bf2-5571cbaf8659"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224225Z:62de2491-a6a4-4d7c-8e96-b5540cfcc53a"
+ "NORTHCENTRALUS:20200519T190629Z:13aa2f43-83cb-4bcc-8bf2-5571cbaf8659"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14559,7 +28041,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:25 GMT"
+ "Tue, 19 May 2020 19:06:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14568,20 +28050,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:21.6625843Z\",\r\n \"duration\": \"PT9.5942689S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb402fee-5f8a-4a16-9700-ccea9ddfca9c"
+ "298762f7-edd7-4df5-b09a-c3c3f783824e"
],
"Accept-Language": [
"en-US"
@@ -14604,16 +28086,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11720"
],
"x-ms-request-id": [
- "7fc04ce1-5f03-478b-ac63-86b4a8756150"
+ "4746a6ba-499f-48f2-95ab-0286f9779dad"
],
"x-ms-correlation-request-id": [
- "7fc04ce1-5f03-478b-ac63-86b4a8756150"
+ "4746a6ba-499f-48f2-95ab-0286f9779dad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224226Z:7fc04ce1-5f03-478b-ac63-86b4a8756150"
+ "NORTHCENTRALUS:20200519T190629Z:4746a6ba-499f-48f2-95ab-0286f9779dad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14622,7 +28104,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:26 GMT"
+ "Tue, 19 May 2020 19:06:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14631,20 +28113,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5348423c-0f9e-4b6d-8283-943dd09120fd"
+ "16a727a1-dfcf-41dd-8702-a411f93a71ef"
],
"Accept-Language": [
"en-US"
@@ -14667,16 +28149,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11718"
],
"x-ms-request-id": [
- "7df163c4-25da-4e79-8fe3-2589753f00e2"
+ "a4eda37c-758a-4c20-b365-80206403404a"
],
"x-ms-correlation-request-id": [
- "7df163c4-25da-4e79-8fe3-2589753f00e2"
+ "a4eda37c-758a-4c20-b365-80206403404a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224226Z:7df163c4-25da-4e79-8fe3-2589753f00e2"
+ "NORTHCENTRALUS:20200519T190630Z:a4eda37c-758a-4c20-b365-80206403404a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14685,7 +28167,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:26 GMT"
+ "Tue, 19 May 2020 19:06:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14694,20 +28176,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "771f654c-a27d-425f-8efe-b6ef75832b2c"
+ "1ff11996-383b-49a0-8e97-9ab53f25a141"
],
"Accept-Language": [
"en-US"
@@ -14730,16 +28212,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11716"
],
"x-ms-request-id": [
- "6199031f-12dc-442a-b0f5-d1e3b32968e7"
+ "73ee3166-2bd0-46dc-9cbf-44258ff83a63"
],
"x-ms-correlation-request-id": [
- "6199031f-12dc-442a-b0f5-d1e3b32968e7"
+ "73ee3166-2bd0-46dc-9cbf-44258ff83a63"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224227Z:6199031f-12dc-442a-b0f5-d1e3b32968e7"
+ "NORTHCENTRALUS:20200519T190630Z:73ee3166-2bd0-46dc-9cbf-44258ff83a63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14748,7 +28230,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:26 GMT"
+ "Tue, 19 May 2020 19:06:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14757,20 +28239,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75decf87-1b30-4916-a3e0-923be51c494d"
+ "74001299-f9f7-4082-b3d2-4d509c26c619"
],
"Accept-Language": [
"en-US"
@@ -14793,16 +28275,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
+ "11714"
],
"x-ms-request-id": [
- "f959cf9e-438e-40cd-be9b-20150dce1907"
+ "cdb81ce1-5146-4526-8d10-48d49a0744b3"
],
"x-ms-correlation-request-id": [
- "f959cf9e-438e-40cd-be9b-20150dce1907"
+ "cdb81ce1-5146-4526-8d10-48d49a0744b3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224227Z:f959cf9e-438e-40cd-be9b-20150dce1907"
+ "NORTHCENTRALUS:20200519T190631Z:cdb81ce1-5146-4526-8d10-48d49a0744b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14811,7 +28293,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:27 GMT"
+ "Tue, 19 May 2020 19:06:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14820,20 +28302,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee316ad1-9fd7-428e-af82-3c0dfaeb86fd"
+ "0e34ecf3-d9b0-409c-9209-05985d5d84ed"
],
"Accept-Language": [
"en-US"
@@ -14856,16 +28338,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
+ "11712"
],
"x-ms-request-id": [
- "45429733-8ec1-4cfa-9237-7ec6cde4a5eb"
+ "c1abe935-d813-4eb3-b8da-736e02abe3a8"
],
"x-ms-correlation-request-id": [
- "45429733-8ec1-4cfa-9237-7ec6cde4a5eb"
+ "c1abe935-d813-4eb3-b8da-736e02abe3a8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224227Z:45429733-8ec1-4cfa-9237-7ec6cde4a5eb"
+ "NORTHCENTRALUS:20200519T190631Z:c1abe935-d813-4eb3-b8da-736e02abe3a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14874,7 +28356,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:27 GMT"
+ "Tue, 19 May 2020 19:06:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14883,20 +28365,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74a8da05-0c75-4058-ab7f-c91dbae85e8f"
+ "031c7c85-cb24-4dac-a3a0-08f8cc469319"
],
"Accept-Language": [
"en-US"
@@ -14919,16 +28401,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
+ "11710"
],
"x-ms-request-id": [
- "a0a93374-354b-4c90-9660-70cfa885c9e6"
+ "89b0de72-2d55-48e2-94d2-c95b152b29af"
],
"x-ms-correlation-request-id": [
- "a0a93374-354b-4c90-9660-70cfa885c9e6"
+ "89b0de72-2d55-48e2-94d2-c95b152b29af"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224228Z:a0a93374-354b-4c90-9660-70cfa885c9e6"
+ "NORTHCENTRALUS:20200519T190632Z:89b0de72-2d55-48e2-94d2-c95b152b29af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14937,7 +28419,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:28 GMT"
+ "Tue, 19 May 2020 19:06:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14946,20 +28428,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3036e545-1f73-4ebd-a4d2-d14617151239"
+ "7db5fe53-95f7-4c2a-bc4a-cd1155cf87a8"
],
"Accept-Language": [
"en-US"
@@ -14982,16 +28464,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
+ "11708"
],
"x-ms-request-id": [
- "cfb08864-104b-4a32-93ff-bca8728daaaa"
+ "003e39dc-182b-43ca-953a-69d53484fde2"
],
"x-ms-correlation-request-id": [
- "cfb08864-104b-4a32-93ff-bca8728daaaa"
+ "003e39dc-182b-43ca-953a-69d53484fde2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224228Z:cfb08864-104b-4a32-93ff-bca8728daaaa"
+ "NORTHCENTRALUS:20200519T190632Z:003e39dc-182b-43ca-953a-69d53484fde2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15000,7 +28482,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:28 GMT"
+ "Tue, 19 May 2020 19:06:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15009,20 +28491,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84c6375c-6209-4856-af71-7f3e6b24ecb9"
+ "94c28bcb-6f80-4163-a170-5e1187c65ac4"
],
"Accept-Language": [
"en-US"
@@ -15045,16 +28527,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
+ "11706"
],
"x-ms-request-id": [
- "30f718c2-b5b5-4a69-9b28-d1b64d3d3061"
+ "6bc04c5d-b3eb-42ad-9bd5-822ac2578c65"
],
"x-ms-correlation-request-id": [
- "30f718c2-b5b5-4a69-9b28-d1b64d3d3061"
+ "6bc04c5d-b3eb-42ad-9bd5-822ac2578c65"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224229Z:30f718c2-b5b5-4a69-9b28-d1b64d3d3061"
+ "NORTHCENTRALUS:20200519T190632Z:6bc04c5d-b3eb-42ad-9bd5-822ac2578c65"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15063,7 +28545,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:28 GMT"
+ "Tue, 19 May 2020 19:06:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15072,20 +28554,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8a05550-e5b6-4768-9536-ac9e363fb4b8"
+ "c127fa7e-daef-49c6-acf3-c0f276ed8609"
],
"Accept-Language": [
"en-US"
@@ -15108,16 +28590,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
+ "11704"
],
"x-ms-request-id": [
- "374e94e9-e586-4191-9784-2da3bb8c2cb9"
+ "74033efa-10ea-46a4-abf3-99e81aade43a"
],
"x-ms-correlation-request-id": [
- "374e94e9-e586-4191-9784-2da3bb8c2cb9"
+ "74033efa-10ea-46a4-abf3-99e81aade43a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224229Z:374e94e9-e586-4191-9784-2da3bb8c2cb9"
+ "NORTHCENTRALUS:20200519T190633Z:74033efa-10ea-46a4-abf3-99e81aade43a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15126,7 +28608,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:29 GMT"
+ "Tue, 19 May 2020 19:06:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15135,20 +28617,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b2e3ea4-34ef-4f7a-a5e0-627e49800c45"
+ "cb258588-4407-4128-93a8-15e9457c4df4"
],
"Accept-Language": [
"en-US"
@@ -15171,16 +28653,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
+ "11702"
],
"x-ms-request-id": [
- "6a577879-eb23-48c8-b5e7-cf24885430fc"
+ "b9cae9e5-86f9-4ceb-8d93-aa05a263d553"
],
"x-ms-correlation-request-id": [
- "6a577879-eb23-48c8-b5e7-cf24885430fc"
+ "b9cae9e5-86f9-4ceb-8d93-aa05a263d553"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224230Z:6a577879-eb23-48c8-b5e7-cf24885430fc"
+ "NORTHCENTRALUS:20200519T190633Z:b9cae9e5-86f9-4ceb-8d93-aa05a263d553"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15189,7 +28671,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:29 GMT"
+ "Tue, 19 May 2020 19:06:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15198,20 +28680,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03a70940-6ac5-4fc0-83bc-a15eeb415bbb"
+ "0927e489-801e-4a44-a8d1-638d0bd5bcfd"
],
"Accept-Language": [
"en-US"
@@ -15234,16 +28716,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
+ "11700"
],
"x-ms-request-id": [
- "cc214499-2e90-4c36-abfc-22e262ad4c7c"
+ "4c74ad2f-5bb6-4ddf-8ad0-56608d44b9c7"
],
"x-ms-correlation-request-id": [
- "cc214499-2e90-4c36-abfc-22e262ad4c7c"
+ "4c74ad2f-5bb6-4ddf-8ad0-56608d44b9c7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224230Z:cc214499-2e90-4c36-abfc-22e262ad4c7c"
+ "NORTHCENTRALUS:20200519T190634Z:4c74ad2f-5bb6-4ddf-8ad0-56608d44b9c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15252,7 +28734,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:30 GMT"
+ "Tue, 19 May 2020 19:06:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15261,20 +28743,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:25.9316373Z\",\r\n \"duration\": \"PT13.8633219S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "276e89f6-43e6-4177-90d1-886ec29dd61d"
+ "1062e757-b2f7-4a15-99e8-8f1c1aa31610"
],
"Accept-Language": [
"en-US"
@@ -15297,16 +28779,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
+ "11698"
],
"x-ms-request-id": [
- "f6362484-4f02-48fb-8de6-3f80b5340018"
+ "19c091f4-5f95-44b4-8ceb-32c5e7e2f8e5"
],
"x-ms-correlation-request-id": [
- "f6362484-4f02-48fb-8de6-3f80b5340018"
+ "19c091f4-5f95-44b4-8ceb-32c5e7e2f8e5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224230Z:f6362484-4f02-48fb-8de6-3f80b5340018"
+ "NORTHCENTRALUS:20200519T190634Z:19c091f4-5f95-44b4-8ceb-32c5e7e2f8e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15315,7 +28797,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:30 GMT"
+ "Tue, 19 May 2020 19:06:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15324,20 +28806,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab9dcb04-2143-4136-952f-19c41753059a"
+ "ef2c168b-b78f-435f-bc82-24612a251ca8"
],
"Accept-Language": [
"en-US"
@@ -15360,16 +28842,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
+ "11696"
],
"x-ms-request-id": [
- "709218df-62f0-4cde-9543-7646505eb28a"
+ "c7f31f18-6271-467a-9fa2-dfbc40fd2184"
],
"x-ms-correlation-request-id": [
- "709218df-62f0-4cde-9543-7646505eb28a"
+ "c7f31f18-6271-467a-9fa2-dfbc40fd2184"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224231Z:709218df-62f0-4cde-9543-7646505eb28a"
+ "NORTHCENTRALUS:20200519T190635Z:c7f31f18-6271-467a-9fa2-dfbc40fd2184"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15378,7 +28860,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:30 GMT"
+ "Tue, 19 May 2020 19:06:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15387,20 +28869,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b927219-a1e0-4f43-af7d-1e0a72b371c1"
+ "a1dc957c-64be-44e2-b9ff-5ce3bdeec3dd"
],
"Accept-Language": [
"en-US"
@@ -15423,16 +28905,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
+ "11694"
],
"x-ms-request-id": [
- "c29178e1-f038-4aa5-8b7e-a21d1c0cd6a0"
+ "a761f50d-78c4-4980-ab56-ab8060f96e7e"
],
"x-ms-correlation-request-id": [
- "c29178e1-f038-4aa5-8b7e-a21d1c0cd6a0"
+ "a761f50d-78c4-4980-ab56-ab8060f96e7e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224231Z:c29178e1-f038-4aa5-8b7e-a21d1c0cd6a0"
+ "NORTHCENTRALUS:20200519T190635Z:a761f50d-78c4-4980-ab56-ab8060f96e7e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15441,7 +28923,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:31 GMT"
+ "Tue, 19 May 2020 19:06:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15450,20 +28932,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91967be7-e14a-45ae-b458-6094f83c59ed"
+ "f0cda46f-e299-4e78-a0e6-2eecb03479c5"
],
"Accept-Language": [
"en-US"
@@ -15486,16 +28968,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
+ "11692"
],
"x-ms-request-id": [
- "cdc0d999-28ce-4744-9a90-da405e51e1ae"
+ "3bbaf118-b0cd-4643-b637-65448bd71232"
],
"x-ms-correlation-request-id": [
- "cdc0d999-28ce-4744-9a90-da405e51e1ae"
+ "3bbaf118-b0cd-4643-b637-65448bd71232"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224232Z:cdc0d999-28ce-4744-9a90-da405e51e1ae"
+ "NORTHCENTRALUS:20200519T190635Z:3bbaf118-b0cd-4643-b637-65448bd71232"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15504,7 +28986,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:31 GMT"
+ "Tue, 19 May 2020 19:06:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15513,20 +28995,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd3f195f-0343-452c-8c32-a1f2708a6744"
+ "b6d4f0d5-02c0-414f-b185-574a9ca72871"
],
"Accept-Language": [
"en-US"
@@ -15549,16 +29031,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
+ "11690"
],
"x-ms-request-id": [
- "1fd7370d-f469-41ea-bfc8-1022b10dd6c2"
+ "966b5981-8744-4822-87e9-646e5f617b5d"
],
"x-ms-correlation-request-id": [
- "1fd7370d-f469-41ea-bfc8-1022b10dd6c2"
+ "966b5981-8744-4822-87e9-646e5f617b5d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224232Z:1fd7370d-f469-41ea-bfc8-1022b10dd6c2"
+ "NORTHCENTRALUS:20200519T190636Z:966b5981-8744-4822-87e9-646e5f617b5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15567,7 +29049,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:32 GMT"
+ "Tue, 19 May 2020 19:06:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15576,20 +29058,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25929e69-1d1f-4e7a-9859-5d0e2e88fa7a"
+ "ea9a373b-4f7b-45bc-8cd9-3a5958949f15"
],
"Accept-Language": [
"en-US"
@@ -15612,16 +29094,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11902"
+ "11688"
],
"x-ms-request-id": [
- "b485a62d-a51b-4c82-99db-17a24cc79486"
+ "1facb78d-5564-41af-b7da-2124e1b7a8d5"
],
"x-ms-correlation-request-id": [
- "b485a62d-a51b-4c82-99db-17a24cc79486"
+ "1facb78d-5564-41af-b7da-2124e1b7a8d5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224232Z:b485a62d-a51b-4c82-99db-17a24cc79486"
+ "NORTHCENTRALUS:20200519T190636Z:1facb78d-5564-41af-b7da-2124e1b7a8d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15630,7 +29112,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:32 GMT"
+ "Tue, 19 May 2020 19:06:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15639,20 +29121,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1a08383-f820-4687-923b-762823aabadd"
+ "307b61c0-c4b8-4a36-a96f-bcdda7d20f8c"
],
"Accept-Language": [
"en-US"
@@ -15675,16 +29157,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11900"
+ "11686"
],
"x-ms-request-id": [
- "69a897ea-ee01-45e1-8c64-aeb333f0787d"
+ "ae6b9e61-4ec2-4b6d-99d8-b05afd22fddd"
],
"x-ms-correlation-request-id": [
- "69a897ea-ee01-45e1-8c64-aeb333f0787d"
+ "ae6b9e61-4ec2-4b6d-99d8-b05afd22fddd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224233Z:69a897ea-ee01-45e1-8c64-aeb333f0787d"
+ "NORTHCENTRALUS:20200519T190637Z:ae6b9e61-4ec2-4b6d-99d8-b05afd22fddd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15693,7 +29175,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:32 GMT"
+ "Tue, 19 May 2020 19:06:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15702,20 +29184,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa963ccc-50bb-4870-a8b5-bd2d7f50f893"
+ "1608515e-c2e1-4363-88b2-82a9b370c594"
],
"Accept-Language": [
"en-US"
@@ -15738,16 +29220,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11898"
+ "11684"
],
"x-ms-request-id": [
- "80bdc005-7a9c-4d24-88bd-6798d691ea75"
+ "032c37a2-31af-4cb8-a4d0-95d79f73b29f"
],
"x-ms-correlation-request-id": [
- "80bdc005-7a9c-4d24-88bd-6798d691ea75"
+ "032c37a2-31af-4cb8-a4d0-95d79f73b29f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224233Z:80bdc005-7a9c-4d24-88bd-6798d691ea75"
+ "NORTHCENTRALUS:20200519T190637Z:032c37a2-31af-4cb8-a4d0-95d79f73b29f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15756,7 +29238,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:33 GMT"
+ "Tue, 19 May 2020 19:06:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15765,20 +29247,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e6af31f-6229-43be-bab3-dd9fd36a0bbd"
+ "8882ac4c-398d-4250-867e-19651a5e7cb7"
],
"Accept-Language": [
"en-US"
@@ -15801,16 +29283,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11896"
+ "11682"
],
"x-ms-request-id": [
- "67ae3ea1-6000-4a35-aed6-db9515834833"
+ "7d373833-8b69-47fb-9ab8-614cdbd99993"
],
"x-ms-correlation-request-id": [
- "67ae3ea1-6000-4a35-aed6-db9515834833"
+ "7d373833-8b69-47fb-9ab8-614cdbd99993"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224234Z:67ae3ea1-6000-4a35-aed6-db9515834833"
+ "NORTHCENTRALUS:20200519T190638Z:7d373833-8b69-47fb-9ab8-614cdbd99993"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15819,7 +29301,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:33 GMT"
+ "Tue, 19 May 2020 19:06:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15828,20 +29310,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d245092-0133-402f-bb2e-1a80e088a594"
+ "59c6d190-3450-4019-8703-9ee18df39549"
],
"Accept-Language": [
"en-US"
@@ -15864,16 +29346,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11894"
+ "11680"
],
"x-ms-request-id": [
- "c306456d-1ad1-4cc5-b87b-02b72d482c1b"
+ "dcac5cca-eeee-4be6-bf69-bd1e03ea062e"
],
"x-ms-correlation-request-id": [
- "c306456d-1ad1-4cc5-b87b-02b72d482c1b"
+ "dcac5cca-eeee-4be6-bf69-bd1e03ea062e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224234Z:c306456d-1ad1-4cc5-b87b-02b72d482c1b"
+ "NORTHCENTRALUS:20200519T190638Z:dcac5cca-eeee-4be6-bf69-bd1e03ea062e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15882,7 +29364,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:34 GMT"
+ "Tue, 19 May 2020 19:06:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15891,20 +29373,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8ab4eb6-736c-4153-962e-9a72c498c08d"
+ "d6d2ba87-597b-4aae-b3f0-30149718b134"
],
"Accept-Language": [
"en-US"
@@ -15927,16 +29409,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11892"
+ "11678"
],
"x-ms-request-id": [
- "8e1b08aa-a939-4a70-a077-67cdad411b66"
+ "91ef4a37-b54c-423b-8e32-4447f6acb39e"
],
"x-ms-correlation-request-id": [
- "8e1b08aa-a939-4a70-a077-67cdad411b66"
+ "91ef4a37-b54c-423b-8e32-4447f6acb39e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224234Z:8e1b08aa-a939-4a70-a077-67cdad411b66"
+ "NORTHCENTRALUS:20200519T190638Z:91ef4a37-b54c-423b-8e32-4447f6acb39e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15945,7 +29427,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:34 GMT"
+ "Tue, 19 May 2020 19:06:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15954,20 +29436,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7118e11d-e308-4638-917f-99a984129374"
+ "9c66d9d9-1ed0-4989-aab8-3674eb15c4ab"
],
"Accept-Language": [
"en-US"
@@ -15990,16 +29472,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11890"
+ "11676"
],
"x-ms-request-id": [
- "1d7beab8-4717-4d5d-bb23-b0aca26cac80"
+ "09bd2759-b0b5-4d04-8c3a-cb93253ebed8"
],
"x-ms-correlation-request-id": [
- "1d7beab8-4717-4d5d-bb23-b0aca26cac80"
+ "09bd2759-b0b5-4d04-8c3a-cb93253ebed8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224235Z:1d7beab8-4717-4d5d-bb23-b0aca26cac80"
+ "NORTHCENTRALUS:20200519T190639Z:09bd2759-b0b5-4d04-8c3a-cb93253ebed8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16008,7 +29490,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:34 GMT"
+ "Tue, 19 May 2020 19:06:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16017,20 +29499,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3b968f6-c5f5-40e0-838d-6a473d384048"
+ "c1a3e3ce-3d3a-4656-8b65-50be398b7dc2"
],
"Accept-Language": [
"en-US"
@@ -16053,16 +29535,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11888"
+ "11674"
],
"x-ms-request-id": [
- "e58e6e67-74a2-4695-a6a7-b7a85511e654"
+ "10aaea01-ab1e-40f8-b667-64d4fb79cf46"
],
"x-ms-correlation-request-id": [
- "e58e6e67-74a2-4695-a6a7-b7a85511e654"
+ "10aaea01-ab1e-40f8-b667-64d4fb79cf46"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224235Z:e58e6e67-74a2-4695-a6a7-b7a85511e654"
+ "NORTHCENTRALUS:20200519T190639Z:10aaea01-ab1e-40f8-b667-64d4fb79cf46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16071,7 +29553,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:35 GMT"
+ "Tue, 19 May 2020 19:06:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16080,20 +29562,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:30.4147663Z\",\r\n \"duration\": \"PT18.3464509S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4794867-1bd6-4c1c-83d1-1f959100b453"
+ "701f2106-107a-4aa4-9dc4-23361ff4bd5f"
],
"Accept-Language": [
"en-US"
@@ -16116,16 +29598,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
+ "11672"
],
"x-ms-request-id": [
- "fdfc9e03-5519-43d6-8625-deae44adcf3c"
+ "f1fcde3d-9598-4b88-8a21-a4657ad740bc"
],
"x-ms-correlation-request-id": [
- "fdfc9e03-5519-43d6-8625-deae44adcf3c"
+ "f1fcde3d-9598-4b88-8a21-a4657ad740bc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224236Z:fdfc9e03-5519-43d6-8625-deae44adcf3c"
+ "NORTHCENTRALUS:20200519T190640Z:f1fcde3d-9598-4b88-8a21-a4657ad740bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16134,7 +29616,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:35 GMT"
+ "Tue, 19 May 2020 19:06:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16143,20 +29625,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "939e36b3-7549-4920-9aa3-b97986686730"
+ "088ab0d6-308d-4462-aace-1fdbb45ec83c"
],
"Accept-Language": [
"en-US"
@@ -16179,16 +29661,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
+ "11670"
],
"x-ms-request-id": [
- "8082bc0c-02a1-4f97-b6e4-5b48dc69d2cc"
+ "ae88922f-b6b6-47dd-a7b2-abd7853ebbe2"
],
"x-ms-correlation-request-id": [
- "8082bc0c-02a1-4f97-b6e4-5b48dc69d2cc"
+ "ae88922f-b6b6-47dd-a7b2-abd7853ebbe2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224236Z:8082bc0c-02a1-4f97-b6e4-5b48dc69d2cc"
+ "NORTHCENTRALUS:20200519T190640Z:ae88922f-b6b6-47dd-a7b2-abd7853ebbe2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16197,7 +29679,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:36 GMT"
+ "Tue, 19 May 2020 19:06:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16206,20 +29688,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d37fa76-e8c6-4c70-b426-0e4f32a5a9e7"
+ "3398ccc0-111d-49a7-87d6-1e25c731f5f5"
],
"Accept-Language": [
"en-US"
@@ -16242,16 +29724,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
+ "11668"
],
"x-ms-request-id": [
- "cb0115fc-f372-473d-b61b-f51291d6d26f"
+ "005299a0-ac61-46a9-9ac4-9a5d02f3dd84"
],
"x-ms-correlation-request-id": [
- "cb0115fc-f372-473d-b61b-f51291d6d26f"
+ "005299a0-ac61-46a9-9ac4-9a5d02f3dd84"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224236Z:cb0115fc-f372-473d-b61b-f51291d6d26f"
+ "NORTHCENTRALUS:20200519T190641Z:005299a0-ac61-46a9-9ac4-9a5d02f3dd84"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16260,7 +29742,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:36 GMT"
+ "Tue, 19 May 2020 19:06:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16269,20 +29751,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3904484b-f802-4987-a796-354e2729204f"
+ "cc3b4ab2-a598-4825-b060-0bcf843b25dc"
],
"Accept-Language": [
"en-US"
@@ -16305,16 +29787,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
+ "11666"
],
"x-ms-request-id": [
- "3506bdc0-97b5-4836-8894-93b90a8fca40"
+ "c94788d6-e647-4c2c-9b41-867b01aff69a"
],
"x-ms-correlation-request-id": [
- "3506bdc0-97b5-4836-8894-93b90a8fca40"
+ "c94788d6-e647-4c2c-9b41-867b01aff69a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224237Z:3506bdc0-97b5-4836-8894-93b90a8fca40"
+ "NORTHCENTRALUS:20200519T190641Z:c94788d6-e647-4c2c-9b41-867b01aff69a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16323,7 +29805,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:37 GMT"
+ "Tue, 19 May 2020 19:06:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16332,20 +29814,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba0d22d6-2a20-4589-a01d-3c69b4f4ced7"
+ "2ee3013d-1ff6-4ccd-aee7-928febc37cef"
],
"Accept-Language": [
"en-US"
@@ -16368,16 +29850,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
+ "11664"
],
"x-ms-request-id": [
- "1f52d5e5-afc9-4f1a-b6b2-f831d38df24c"
+ "6052a781-1040-41f0-9efc-db7330759f19"
],
"x-ms-correlation-request-id": [
- "1f52d5e5-afc9-4f1a-b6b2-f831d38df24c"
+ "6052a781-1040-41f0-9efc-db7330759f19"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224238Z:1f52d5e5-afc9-4f1a-b6b2-f831d38df24c"
+ "NORTHCENTRALUS:20200519T190642Z:6052a781-1040-41f0-9efc-db7330759f19"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16386,7 +29868,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:37 GMT"
+ "Tue, 19 May 2020 19:06:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16395,20 +29877,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b736eb8f-d418-4849-862c-47e63141ce2f"
+ "520ed49a-39fc-4044-b170-472f6bc7c0ae"
],
"Accept-Language": [
"en-US"
@@ -16431,16 +29913,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11876"
+ "11662"
],
"x-ms-request-id": [
- "ab083ee2-3226-4451-9a40-58361df62af8"
+ "282c1697-6230-4f1a-b190-e9a7164b7804"
],
"x-ms-correlation-request-id": [
- "ab083ee2-3226-4451-9a40-58361df62af8"
+ "282c1697-6230-4f1a-b190-e9a7164b7804"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224238Z:ab083ee2-3226-4451-9a40-58361df62af8"
+ "NORTHCENTRALUS:20200519T190642Z:282c1697-6230-4f1a-b190-e9a7164b7804"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16449,7 +29931,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:37 GMT"
+ "Tue, 19 May 2020 19:06:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16458,20 +29940,20 @@
"-1"
],
"Content-Length": [
- "1325"
+ "1323"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:24.9598298Z\",\r\n \"duration\": \"PT57.6869408S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2fa8b75d-114d-4c76-a996-78bc038df509"
+ "e2a6a6d2-a028-4455-98bd-60609a894b18"
],
"Accept-Language": [
"en-US"
@@ -16494,16 +29976,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11874"
+ "11660"
],
"x-ms-request-id": [
- "891dbb00-32e1-4b8e-bbf1-c16604d0a316"
+ "1f9b1086-83b5-4340-ab8b-cb397d28deff"
],
"x-ms-correlation-request-id": [
- "891dbb00-32e1-4b8e-bbf1-c16604d0a316"
+ "1f9b1086-83b5-4340-ab8b-cb397d28deff"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224238Z:891dbb00-32e1-4b8e-bbf1-c16604d0a316"
+ "NORTHCENTRALUS:20200519T190642Z:1f9b1086-83b5-4340-ab8b-cb397d28deff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16512,7 +29994,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:38 GMT"
+ "Tue, 19 May 2020 19:06:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16524,17 +30006,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f41ee20-55c5-46f4-ae8d-3a89bd92881f"
+ "0d963b6a-1a93-4f6c-8eca-64fdf54aee9f"
],
"Accept-Language": [
"en-US"
@@ -16557,16 +30039,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11872"
+ "11658"
],
"x-ms-request-id": [
- "9603560a-088e-47e1-928e-056d6ccdbeca"
+ "018c43ec-0bfb-423f-b621-1c4254427101"
],
"x-ms-correlation-request-id": [
- "9603560a-088e-47e1-928e-056d6ccdbeca"
+ "018c43ec-0bfb-423f-b621-1c4254427101"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224239Z:9603560a-088e-47e1-928e-056d6ccdbeca"
+ "NORTHCENTRALUS:20200519T190643Z:018c43ec-0bfb-423f-b621-1c4254427101"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16575,7 +30057,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:38 GMT"
+ "Tue, 19 May 2020 19:06:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16587,17 +30069,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70c82857-86fc-462b-8438-09869d98ca93"
+ "a9e6c4f1-2f02-4579-80ab-749709562dcb"
],
"Accept-Language": [
"en-US"
@@ -16620,16 +30102,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11870"
+ "11656"
],
"x-ms-request-id": [
- "3c452422-a0ff-45d6-a356-1c99e0bd109c"
+ "48a57648-ae27-42c5-b95e-2ccafd312c3c"
],
"x-ms-correlation-request-id": [
- "3c452422-a0ff-45d6-a356-1c99e0bd109c"
+ "48a57648-ae27-42c5-b95e-2ccafd312c3c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224239Z:3c452422-a0ff-45d6-a356-1c99e0bd109c"
+ "NORTHCENTRALUS:20200519T190643Z:48a57648-ae27-42c5-b95e-2ccafd312c3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16638,7 +30120,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:39 GMT"
+ "Tue, 19 May 2020 19:06:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16650,17 +30132,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d76025f-f49e-4fab-81ef-32858df29811"
+ "e8976606-7eb8-4d6b-a6b1-c1902cbafea0"
],
"Accept-Language": [
"en-US"
@@ -16683,16 +30165,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11868"
+ "11654"
],
"x-ms-request-id": [
- "1a909765-f0c8-4971-a0a8-83f804ade6dd"
+ "ef1c2c45-da2c-4722-bc5a-413e14aa04e0"
],
"x-ms-correlation-request-id": [
- "1a909765-f0c8-4971-a0a8-83f804ade6dd"
+ "ef1c2c45-da2c-4722-bc5a-413e14aa04e0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224240Z:1a909765-f0c8-4971-a0a8-83f804ade6dd"
+ "NORTHCENTRALUS:20200519T190644Z:ef1c2c45-da2c-4722-bc5a-413e14aa04e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16701,7 +30183,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:39 GMT"
+ "Tue, 19 May 2020 19:06:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16713,17 +30195,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5a400c5-d55e-4284-b1a3-ade9f0f45682"
+ "b86d9cba-ad55-4ad0-941d-d01a75d269b4"
],
"Accept-Language": [
"en-US"
@@ -16746,16 +30228,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11866"
+ "11652"
],
"x-ms-request-id": [
- "74b3b978-8529-4d00-8344-c0a38e7fe6f3"
+ "cb801a7d-d095-4462-bd9e-995b4db3e296"
],
"x-ms-correlation-request-id": [
- "74b3b978-8529-4d00-8344-c0a38e7fe6f3"
+ "cb801a7d-d095-4462-bd9e-995b4db3e296"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224240Z:74b3b978-8529-4d00-8344-c0a38e7fe6f3"
+ "NORTHCENTRALUS:20200519T190644Z:cb801a7d-d095-4462-bd9e-995b4db3e296"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16764,7 +30246,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:39 GMT"
+ "Tue, 19 May 2020 19:06:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16776,17 +30258,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93214140-5da7-4d52-b099-0ef73d82f198"
+ "5fcbccc1-a364-47a7-9d97-4611b1b4249a"
],
"Accept-Language": [
"en-US"
@@ -16809,16 +30291,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11864"
+ "11650"
],
"x-ms-request-id": [
- "acf79fef-5c8f-43e3-83b8-a2f399341548"
+ "f8fc1599-1226-448e-8771-8ae0f62e4d41"
],
"x-ms-correlation-request-id": [
- "acf79fef-5c8f-43e3-83b8-a2f399341548"
+ "f8fc1599-1226-448e-8771-8ae0f62e4d41"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224240Z:acf79fef-5c8f-43e3-83b8-a2f399341548"
+ "NORTHCENTRALUS:20200519T190644Z:f8fc1599-1226-448e-8771-8ae0f62e4d41"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16827,7 +30309,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:40 GMT"
+ "Tue, 19 May 2020 19:06:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16839,17 +30321,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34056415-bd67-4863-a00b-310ffd63c415"
+ "f38343b6-229b-4980-b3a9-0afb3f6c4580"
],
"Accept-Language": [
"en-US"
@@ -16872,16 +30354,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11862"
+ "11648"
],
"x-ms-request-id": [
- "65b37327-8b56-4c0b-859d-cd6b4f1c29c4"
+ "0eac234e-3486-468e-b829-79eb90fc722a"
],
"x-ms-correlation-request-id": [
- "65b37327-8b56-4c0b-859d-cd6b4f1c29c4"
+ "0eac234e-3486-468e-b829-79eb90fc722a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224241Z:65b37327-8b56-4c0b-859d-cd6b4f1c29c4"
+ "NORTHCENTRALUS:20200519T190645Z:0eac234e-3486-468e-b829-79eb90fc722a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16890,7 +30372,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:40 GMT"
+ "Tue, 19 May 2020 19:06:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16902,17 +30384,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f992090-75cf-4e13-a3a8-e4398844d970"
+ "4e04d146-a647-426a-b240-a95fe3911fd7"
],
"Accept-Language": [
"en-US"
@@ -16935,16 +30417,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11860"
+ "11646"
],
"x-ms-request-id": [
- "9ec6292e-15e9-496e-8601-e40518837116"
+ "b09f3405-9867-4d47-87e9-10f8691ae216"
],
"x-ms-correlation-request-id": [
- "9ec6292e-15e9-496e-8601-e40518837116"
+ "b09f3405-9867-4d47-87e9-10f8691ae216"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224241Z:9ec6292e-15e9-496e-8601-e40518837116"
+ "NORTHCENTRALUS:20200519T190645Z:b09f3405-9867-4d47-87e9-10f8691ae216"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -16953,7 +30435,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:41 GMT"
+ "Tue, 19 May 2020 19:06:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -16965,17 +30447,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97e74530-ee46-49c8-8647-31ffaf85acfd"
+ "7f4de0e2-7470-446f-b920-bc79d7a4d0bf"
],
"Accept-Language": [
"en-US"
@@ -16998,16 +30480,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11858"
+ "11644"
],
"x-ms-request-id": [
- "d5a6b2d9-b29a-45ab-8710-bade406e2210"
+ "7a1e6391-6a51-4e6b-83c7-d940201cdc1b"
],
"x-ms-correlation-request-id": [
- "d5a6b2d9-b29a-45ab-8710-bade406e2210"
+ "7a1e6391-6a51-4e6b-83c7-d940201cdc1b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224242Z:d5a6b2d9-b29a-45ab-8710-bade406e2210"
+ "NORTHCENTRALUS:20200519T190646Z:7a1e6391-6a51-4e6b-83c7-d940201cdc1b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17016,7 +30498,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:41 GMT"
+ "Tue, 19 May 2020 19:06:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17028,17 +30510,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:35.9414745Z\",\r\n \"duration\": \"PT23.8731591S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23a0f8ad-2939-40da-a9c3-5d0ab7b2cc9c"
+ "8c5e8fca-6c62-4afb-907c-1f543bfd6802"
],
"Accept-Language": [
"en-US"
@@ -17061,16 +30543,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11856"
+ "11642"
],
"x-ms-request-id": [
- "be468af8-e8a5-47c9-9bb0-ba5cc3de8f4c"
+ "505c3224-0613-473d-b134-d7f68f029ac7"
],
"x-ms-correlation-request-id": [
- "be468af8-e8a5-47c9-9bb0-ba5cc3de8f4c"
+ "505c3224-0613-473d-b134-d7f68f029ac7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224242Z:be468af8-e8a5-47c9-9bb0-ba5cc3de8f4c"
+ "NORTHCENTRALUS:20200519T190646Z:505c3224-0613-473d-b134-d7f68f029ac7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17079,7 +30561,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:41 GMT"
+ "Tue, 19 May 2020 19:06:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17091,17 +30573,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb678605-fe6e-42e6-844a-81ca86e05f22"
+ "e6ee9bcc-f3b9-42ca-a0ca-4d28dbc4d1a2"
],
"Accept-Language": [
"en-US"
@@ -17124,16 +30606,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11854"
+ "11640"
],
"x-ms-request-id": [
- "6347d245-d899-4b0d-a19d-d65aa18b83ea"
+ "b7026527-350f-422f-8d7e-b7e28dd9fd2e"
],
"x-ms-correlation-request-id": [
- "6347d245-d899-4b0d-a19d-d65aa18b83ea"
+ "b7026527-350f-422f-8d7e-b7e28dd9fd2e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224242Z:6347d245-d899-4b0d-a19d-d65aa18b83ea"
+ "NORTHCENTRALUS:20200519T190646Z:b7026527-350f-422f-8d7e-b7e28dd9fd2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17142,7 +30624,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:42 GMT"
+ "Tue, 19 May 2020 19:06:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17154,17 +30636,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e0717fd-b549-464b-94ba-f286ac401838"
+ "aff0c3b3-0dce-46a1-b91c-cc8ac280832b"
],
"Accept-Language": [
"en-US"
@@ -17187,16 +30669,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11852"
+ "11638"
],
"x-ms-request-id": [
- "0bafa257-114b-4636-85ba-6f68ac9685d3"
+ "46e9192a-f1d0-4d3a-b3da-90a3a9df14b7"
],
"x-ms-correlation-request-id": [
- "0bafa257-114b-4636-85ba-6f68ac9685d3"
+ "46e9192a-f1d0-4d3a-b3da-90a3a9df14b7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224243Z:0bafa257-114b-4636-85ba-6f68ac9685d3"
+ "NORTHCENTRALUS:20200519T190647Z:46e9192a-f1d0-4d3a-b3da-90a3a9df14b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17205,7 +30687,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:42 GMT"
+ "Tue, 19 May 2020 19:06:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17217,17 +30699,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f994262-0a33-4c39-9dc0-fcfe3657ffcf"
+ "000be37d-e98a-45f9-97d3-696f70e43112"
],
"Accept-Language": [
"en-US"
@@ -17250,16 +30732,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11850"
+ "11636"
],
"x-ms-request-id": [
- "9309734c-ad43-4dd2-94ad-1ced29283be7"
+ "7bd29e0f-cf21-41b0-890a-bb01e60d608d"
],
"x-ms-correlation-request-id": [
- "9309734c-ad43-4dd2-94ad-1ced29283be7"
+ "7bd29e0f-cf21-41b0-890a-bb01e60d608d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224243Z:9309734c-ad43-4dd2-94ad-1ced29283be7"
+ "NORTHCENTRALUS:20200519T190647Z:7bd29e0f-cf21-41b0-890a-bb01e60d608d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17268,7 +30750,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:43 GMT"
+ "Tue, 19 May 2020 19:06:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17280,17 +30762,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08db233d-2fc4-44cf-9597-20bd14d5f924"
+ "db79b9bd-56e9-401d-96b3-d96baa3d02ca"
],
"Accept-Language": [
"en-US"
@@ -17313,16 +30795,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11848"
+ "11634"
],
"x-ms-request-id": [
- "29ce0646-b340-4271-b2aa-d192a58c1e09"
+ "ee9222cd-6962-4b86-817a-5dee94e4cf03"
],
"x-ms-correlation-request-id": [
- "29ce0646-b340-4271-b2aa-d192a58c1e09"
+ "ee9222cd-6962-4b86-817a-5dee94e4cf03"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224244Z:29ce0646-b340-4271-b2aa-d192a58c1e09"
+ "NORTHCENTRALUS:20200519T190648Z:ee9222cd-6962-4b86-817a-5dee94e4cf03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17331,7 +30813,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:43 GMT"
+ "Tue, 19 May 2020 19:06:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17343,17 +30825,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "126a256c-3cfb-4d23-9bf8-4d46eb98e250"
+ "63affa37-3762-49df-b5d7-f04f4a394e64"
],
"Accept-Language": [
"en-US"
@@ -17376,16 +30858,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11846"
+ "11632"
],
"x-ms-request-id": [
- "86790d2b-c046-42c3-983d-62161944c2ae"
+ "27a04bcf-c8a2-4b76-872c-fe818025bbe7"
],
"x-ms-correlation-request-id": [
- "86790d2b-c046-42c3-983d-62161944c2ae"
+ "27a04bcf-c8a2-4b76-872c-fe818025bbe7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224244Z:86790d2b-c046-42c3-983d-62161944c2ae"
+ "NORTHCENTRALUS:20200519T190648Z:27a04bcf-c8a2-4b76-872c-fe818025bbe7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17394,7 +30876,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:43 GMT"
+ "Tue, 19 May 2020 19:06:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17406,17 +30888,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82001f20-20ff-4165-b21b-6914bc904891"
+ "b9267246-309e-46f9-8b73-e049a4cc11a0"
],
"Accept-Language": [
"en-US"
@@ -17439,16 +30921,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11844"
+ "11630"
],
"x-ms-request-id": [
- "9d3bf7d5-841b-4dd8-aa02-10b1d798a2bb"
+ "9c399b62-4810-4db3-8577-dc4469b07914"
],
"x-ms-correlation-request-id": [
- "9d3bf7d5-841b-4dd8-aa02-10b1d798a2bb"
+ "9c399b62-4810-4db3-8577-dc4469b07914"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224245Z:9d3bf7d5-841b-4dd8-aa02-10b1d798a2bb"
+ "NORTHCENTRALUS:20200519T190648Z:9c399b62-4810-4db3-8577-dc4469b07914"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17457,7 +30939,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:44 GMT"
+ "Tue, 19 May 2020 19:06:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17469,17 +30951,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62d42be9-3cac-4967-8c43-cb7c280407c0"
+ "2f4495c1-8f8d-4c1b-8ad9-361d19fffc7c"
],
"Accept-Language": [
"en-US"
@@ -17502,16 +30984,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11842"
+ "11628"
],
"x-ms-request-id": [
- "f69fefba-27ae-4c3f-b5e6-e116af81c14c"
+ "85952df3-97f8-4fd4-9896-f471716c6e50"
],
"x-ms-correlation-request-id": [
- "f69fefba-27ae-4c3f-b5e6-e116af81c14c"
+ "85952df3-97f8-4fd4-9896-f471716c6e50"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224245Z:f69fefba-27ae-4c3f-b5e6-e116af81c14c"
+ "NORTHCENTRALUS:20200519T190649Z:85952df3-97f8-4fd4-9896-f471716c6e50"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17520,7 +31002,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:44 GMT"
+ "Tue, 19 May 2020 19:06:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17532,17 +31014,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11af6bf2-51be-45b8-b92e-180c84031a19"
+ "16a8289d-f5be-4f5f-a3c3-8713ebbf2526"
],
"Accept-Language": [
"en-US"
@@ -17565,16 +31047,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11840"
+ "11626"
],
"x-ms-request-id": [
- "6cca363c-c425-4cd8-ba55-26c3db7bb5f1"
+ "a5ba3172-af99-402c-a4fb-dc6c29a6402d"
],
"x-ms-correlation-request-id": [
- "6cca363c-c425-4cd8-ba55-26c3db7bb5f1"
+ "a5ba3172-af99-402c-a4fb-dc6c29a6402d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224245Z:6cca363c-c425-4cd8-ba55-26c3db7bb5f1"
+ "NORTHCENTRALUS:20200519T190649Z:a5ba3172-af99-402c-a4fb-dc6c29a6402d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17583,7 +31065,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:45 GMT"
+ "Tue, 19 May 2020 19:06:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17595,17 +31077,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "938e5e8c-048e-49ea-b108-09bc9e5e86dc"
+ "ebbb14f8-ba7b-43a3-96bf-5bc02bae64d9"
],
"Accept-Language": [
"en-US"
@@ -17628,16 +31110,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11838"
+ "11624"
],
"x-ms-request-id": [
- "2f6bef1e-59d7-4cb1-b3d4-272270c756ca"
+ "f64ff7fb-dcfa-4f22-ad59-4d3aeb9db3c0"
],
"x-ms-correlation-request-id": [
- "2f6bef1e-59d7-4cb1-b3d4-272270c756ca"
+ "f64ff7fb-dcfa-4f22-ad59-4d3aeb9db3c0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224246Z:2f6bef1e-59d7-4cb1-b3d4-272270c756ca"
+ "NORTHCENTRALUS:20200519T190650Z:f64ff7fb-dcfa-4f22-ad59-4d3aeb9db3c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17646,7 +31128,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:45 GMT"
+ "Tue, 19 May 2020 19:06:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17658,17 +31140,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b80d192a-2818-4564-9266-f867feba725e"
+ "6361698e-76a9-4473-b2b3-ae4cf23d9ad3"
],
"Accept-Language": [
"en-US"
@@ -17691,16 +31173,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11836"
+ "11622"
],
"x-ms-request-id": [
- "d8308ed1-3b13-4e4b-ad79-e8004b365406"
+ "53448f8c-7fec-42b4-92a5-5bd0af332fca"
],
"x-ms-correlation-request-id": [
- "d8308ed1-3b13-4e4b-ad79-e8004b365406"
+ "53448f8c-7fec-42b4-92a5-5bd0af332fca"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224246Z:d8308ed1-3b13-4e4b-ad79-e8004b365406"
+ "NORTHCENTRALUS:20200519T190650Z:53448f8c-7fec-42b4-92a5-5bd0af332fca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17709,7 +31191,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:46 GMT"
+ "Tue, 19 May 2020 19:06:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17721,17 +31203,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ef34451-a863-46b5-ae5c-a661a37bc3ee"
+ "489a0caf-5be5-4a34-85d9-ecd8f1c57b90"
],
"Accept-Language": [
"en-US"
@@ -17754,16 +31236,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11834"
+ "11620"
],
"x-ms-request-id": [
- "92390bc9-217e-443c-a40c-6c7406ff4eb3"
+ "cf1f1495-db43-475f-9ea4-45cffd5cbd8f"
],
"x-ms-correlation-request-id": [
- "92390bc9-217e-443c-a40c-6c7406ff4eb3"
+ "cf1f1495-db43-475f-9ea4-45cffd5cbd8f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224247Z:92390bc9-217e-443c-a40c-6c7406ff4eb3"
+ "NORTHCENTRALUS:20200519T190650Z:cf1f1495-db43-475f-9ea4-45cffd5cbd8f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17772,7 +31254,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:46 GMT"
+ "Tue, 19 May 2020 19:06:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17784,17 +31266,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d01a966d-3649-4072-a4e6-30985d734de5"
+ "bad7c9e7-ddcc-4cf3-9099-c1fb5db41f73"
],
"Accept-Language": [
"en-US"
@@ -17817,16 +31299,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11832"
+ "11618"
],
"x-ms-request-id": [
- "3eb941ab-7c81-43c2-92f0-7a9194544116"
+ "dc44b078-899f-44d0-abb9-93e79fa7c184"
],
"x-ms-correlation-request-id": [
- "3eb941ab-7c81-43c2-92f0-7a9194544116"
+ "dc44b078-899f-44d0-abb9-93e79fa7c184"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224247Z:3eb941ab-7c81-43c2-92f0-7a9194544116"
+ "NORTHCENTRALUS:20200519T190651Z:dc44b078-899f-44d0-abb9-93e79fa7c184"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17835,7 +31317,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:46 GMT"
+ "Tue, 19 May 2020 19:06:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17847,17 +31329,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec7af65b-cfdd-4872-a7e4-ea5239d9309d"
+ "34de5e16-8c11-4e3c-b117-6cc4c9620d7c"
],
"Accept-Language": [
"en-US"
@@ -17880,16 +31362,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11830"
+ "11616"
],
"x-ms-request-id": [
- "82fc052f-182c-469b-a4b8-6c28d9cc1b38"
+ "92a7059b-47dc-4844-bb1a-8bc70f7c918b"
],
"x-ms-correlation-request-id": [
- "82fc052f-182c-469b-a4b8-6c28d9cc1b38"
+ "92a7059b-47dc-4844-bb1a-8bc70f7c918b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224247Z:82fc052f-182c-469b-a4b8-6c28d9cc1b38"
+ "NORTHCENTRALUS:20200519T190651Z:92a7059b-47dc-4844-bb1a-8bc70f7c918b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17898,7 +31380,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:47 GMT"
+ "Tue, 19 May 2020 19:06:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17910,17 +31392,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3769f38-e23c-40c0-b177-7c63fa0992dd"
+ "e510bb4f-2c72-436b-9e38-4bdd47432c20"
],
"Accept-Language": [
"en-US"
@@ -17943,16 +31425,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11828"
+ "11614"
],
"x-ms-request-id": [
- "048bc604-b566-4e56-8726-50b44a1a7583"
+ "fa14ee5d-325a-46bf-a409-7b5229858057"
],
"x-ms-correlation-request-id": [
- "048bc604-b566-4e56-8726-50b44a1a7583"
+ "fa14ee5d-325a-46bf-a409-7b5229858057"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224248Z:048bc604-b566-4e56-8726-50b44a1a7583"
+ "NORTHCENTRALUS:20200519T190651Z:fa14ee5d-325a-46bf-a409-7b5229858057"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -17961,7 +31443,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:47 GMT"
+ "Tue, 19 May 2020 19:06:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -17973,17 +31455,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a02356f-5db4-4c31-9668-e405c6c8855b"
+ "272e08e7-f6fd-4d54-b991-9c02a0cef3f7"
],
"Accept-Language": [
"en-US"
@@ -18006,16 +31488,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11826"
+ "11612"
],
"x-ms-request-id": [
- "8ec59395-66d5-4ca7-ac44-c997956b3372"
+ "bb3199e8-e64a-4fdf-8af6-32752c301e8a"
],
"x-ms-correlation-request-id": [
- "8ec59395-66d5-4ca7-ac44-c997956b3372"
+ "bb3199e8-e64a-4fdf-8af6-32752c301e8a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224248Z:8ec59395-66d5-4ca7-ac44-c997956b3372"
+ "NORTHCENTRALUS:20200519T190652Z:bb3199e8-e64a-4fdf-8af6-32752c301e8a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18024,7 +31506,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:47 GMT"
+ "Tue, 19 May 2020 19:06:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18036,17 +31518,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe2bc67d-10c4-4087-bebd-0ce648a89ebe"
+ "17acd77a-7b60-4cc8-b40f-3ed3098ea583"
],
"Accept-Language": [
"en-US"
@@ -18069,16 +31551,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11824"
+ "11610"
],
"x-ms-request-id": [
- "6556cea0-76e0-4460-8755-d3e4b0d3a72d"
+ "9b010771-89ce-4b8b-bddd-f97fbfce1018"
],
"x-ms-correlation-request-id": [
- "6556cea0-76e0-4460-8755-d3e4b0d3a72d"
+ "9b010771-89ce-4b8b-bddd-f97fbfce1018"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224249Z:6556cea0-76e0-4460-8755-d3e4b0d3a72d"
+ "NORTHCENTRALUS:20200519T190652Z:9b010771-89ce-4b8b-bddd-f97fbfce1018"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18087,7 +31569,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:48 GMT"
+ "Tue, 19 May 2020 19:06:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18099,17 +31581,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c668a4f-c9e9-4df6-b46d-2afd47f7df2f"
+ "b1b27877-da44-45b3-ad33-4f792b6a8c50"
],
"Accept-Language": [
"en-US"
@@ -18132,16 +31614,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11822"
+ "11608"
],
"x-ms-request-id": [
- "4965a8f4-798d-4730-b44d-705c2566e7d3"
+ "3b6ac7d3-b6dd-41f5-b3e0-77a9c3d45609"
],
"x-ms-correlation-request-id": [
- "4965a8f4-798d-4730-b44d-705c2566e7d3"
+ "3b6ac7d3-b6dd-41f5-b3e0-77a9c3d45609"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224249Z:4965a8f4-798d-4730-b44d-705c2566e7d3"
+ "NORTHCENTRALUS:20200519T190653Z:3b6ac7d3-b6dd-41f5-b3e0-77a9c3d45609"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18150,7 +31632,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:48 GMT"
+ "Tue, 19 May 2020 19:06:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18162,17 +31644,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:42.4613035Z\",\r\n \"duration\": \"PT30.3929881S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d72d9812-1414-40f4-b67e-c4768ec60c7b"
+ "ba67624a-fdce-4d29-99f4-8ad88ddb4565"
],
"Accept-Language": [
"en-US"
@@ -18195,16 +31677,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11820"
+ "11606"
],
"x-ms-request-id": [
- "7b9ca489-f122-44c3-846c-89c12f5627be"
+ "ed3895e1-c369-4eaf-96d4-21b4537c9fe4"
],
"x-ms-correlation-request-id": [
- "7b9ca489-f122-44c3-846c-89c12f5627be"
+ "ed3895e1-c369-4eaf-96d4-21b4537c9fe4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224249Z:7b9ca489-f122-44c3-846c-89c12f5627be"
+ "NORTHCENTRALUS:20200519T190653Z:ed3895e1-c369-4eaf-96d4-21b4537c9fe4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18213,7 +31695,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:49 GMT"
+ "Tue, 19 May 2020 19:06:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18222,20 +31704,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c131663-4ea5-4387-9bc0-492b021e5f2e"
+ "f46704fb-3f28-4ab1-a4f3-b187633d4a3e"
],
"Accept-Language": [
"en-US"
@@ -18258,16 +31740,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11818"
+ "11604"
],
"x-ms-request-id": [
- "f1a29503-5360-4a66-b908-36da930ea46f"
+ "6b775c27-4273-49dd-b8dc-749b104b38ea"
],
"x-ms-correlation-request-id": [
- "f1a29503-5360-4a66-b908-36da930ea46f"
+ "6b775c27-4273-49dd-b8dc-749b104b38ea"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224250Z:f1a29503-5360-4a66-b908-36da930ea46f"
+ "NORTHCENTRALUS:20200519T190653Z:6b775c27-4273-49dd-b8dc-749b104b38ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18276,7 +31758,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:49 GMT"
+ "Tue, 19 May 2020 19:06:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18285,20 +31767,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2778c227-b11a-42fc-a914-8f4ab16e25d1"
+ "22c9b534-4b02-43a5-8651-e364d88ec582"
],
"Accept-Language": [
"en-US"
@@ -18321,16 +31803,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11816"
+ "11602"
],
"x-ms-request-id": [
- "fb765478-db08-4715-983b-3fcfb0c3969a"
+ "5cba4461-d22f-4028-a295-0793c4dec7a5"
],
"x-ms-correlation-request-id": [
- "fb765478-db08-4715-983b-3fcfb0c3969a"
+ "5cba4461-d22f-4028-a295-0793c4dec7a5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224250Z:fb765478-db08-4715-983b-3fcfb0c3969a"
+ "NORTHCENTRALUS:20200519T190654Z:5cba4461-d22f-4028-a295-0793c4dec7a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18339,7 +31821,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:50 GMT"
+ "Tue, 19 May 2020 19:06:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18348,20 +31830,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a0e5c772-8494-4a92-b8db-06ecdcce6020"
+ "21296798-de29-4920-80aa-9829e95ee2fc"
],
"Accept-Language": [
"en-US"
@@ -18384,16 +31866,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11814"
+ "11600"
],
"x-ms-request-id": [
- "8f1254c3-6278-49c7-b200-7aab500ee034"
+ "a5b12273-b068-45aa-8e23-8ba75cf05496"
],
"x-ms-correlation-request-id": [
- "8f1254c3-6278-49c7-b200-7aab500ee034"
+ "a5b12273-b068-45aa-8e23-8ba75cf05496"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224251Z:8f1254c3-6278-49c7-b200-7aab500ee034"
+ "NORTHCENTRALUS:20200519T190654Z:a5b12273-b068-45aa-8e23-8ba75cf05496"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18402,7 +31884,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:50 GMT"
+ "Tue, 19 May 2020 19:06:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18411,20 +31893,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:42.4663869Z\",\r\n \"duration\": \"PT1M15.1934979S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6b6cf1e-0f74-4c6f-81fd-4fd59a48d26e"
+ "edcf6546-c4f4-41e7-96fc-589cde554bc8"
],
"Accept-Language": [
"en-US"
@@ -18447,16 +31929,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11812"
+ "11598"
],
"x-ms-request-id": [
- "ba09b8d5-ca23-412f-9fa8-cf17c13f700b"
+ "951a6544-28e6-4339-841c-cdd372d8e16a"
],
"x-ms-correlation-request-id": [
- "ba09b8d5-ca23-412f-9fa8-cf17c13f700b"
+ "951a6544-28e6-4339-841c-cdd372d8e16a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224251Z:ba09b8d5-ca23-412f-9fa8-cf17c13f700b"
+ "NORTHCENTRALUS:20200519T190655Z:951a6544-28e6-4339-841c-cdd372d8e16a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18465,7 +31947,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:50 GMT"
+ "Tue, 19 May 2020 19:06:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18474,20 +31956,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e98aa840-7e40-4859-a309-e87ddda445dd"
+ "2c5b870b-105e-478f-8f92-a427094d5cb4"
],
"Accept-Language": [
"en-US"
@@ -18510,16 +31992,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11810"
+ "11596"
],
"x-ms-request-id": [
- "6c95dbdd-b6ad-44e6-aec4-8adc393eaeec"
+ "5ddc1278-4796-42c4-89ee-f6c41b9824df"
],
"x-ms-correlation-request-id": [
- "6c95dbdd-b6ad-44e6-aec4-8adc393eaeec"
+ "5ddc1278-4796-42c4-89ee-f6c41b9824df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224251Z:6c95dbdd-b6ad-44e6-aec4-8adc393eaeec"
+ "NORTHCENTRALUS:20200519T190655Z:5ddc1278-4796-42c4-89ee-f6c41b9824df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18528,7 +32010,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:51 GMT"
+ "Tue, 19 May 2020 19:06:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18537,20 +32019,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c2cd7b9-aaa3-4d3b-8342-844b5978df2c"
+ "a98a4333-132c-42d6-b841-aff91fac0462"
],
"Accept-Language": [
"en-US"
@@ -18573,16 +32055,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11808"
+ "11594"
],
"x-ms-request-id": [
- "0d855577-61c8-4687-9189-033faaba1821"
+ "1fb4e51f-b46b-4ea6-8ea6-4c0cf4c4ea8b"
],
"x-ms-correlation-request-id": [
- "0d855577-61c8-4687-9189-033faaba1821"
+ "1fb4e51f-b46b-4ea6-8ea6-4c0cf4c4ea8b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224252Z:0d855577-61c8-4687-9189-033faaba1821"
+ "NORTHCENTRALUS:20200519T190655Z:1fb4e51f-b46b-4ea6-8ea6-4c0cf4c4ea8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18591,7 +32073,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:51 GMT"
+ "Tue, 19 May 2020 19:06:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18600,20 +32082,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "221fe8dc-5efc-400e-8ad9-0f8a2873e3f7"
+ "739f1093-2b45-4a03-8969-c1f93ee6795c"
],
"Accept-Language": [
"en-US"
@@ -18636,16 +32118,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11806"
+ "11592"
],
"x-ms-request-id": [
- "2842749e-a77c-4619-8c0b-54f19a7c7cdc"
+ "6bdaaa02-adb4-449b-9995-e71311a25421"
],
"x-ms-correlation-request-id": [
- "2842749e-a77c-4619-8c0b-54f19a7c7cdc"
+ "6bdaaa02-adb4-449b-9995-e71311a25421"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224252Z:2842749e-a77c-4619-8c0b-54f19a7c7cdc"
+ "NORTHCENTRALUS:20200519T190656Z:6bdaaa02-adb4-449b-9995-e71311a25421"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18654,7 +32136,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:52 GMT"
+ "Tue, 19 May 2020 19:06:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18663,20 +32145,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c66bee60-bb60-4ae3-a3b4-46b50c576d44"
+ "b4918b68-0004-4e09-ba7b-ab617ef61849"
],
"Accept-Language": [
"en-US"
@@ -18699,16 +32181,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11804"
+ "11590"
],
"x-ms-request-id": [
- "9b5f8c66-ec28-49b4-9891-a7191a13ce28"
+ "7b5a20b6-0095-4a80-b289-15ab944bee52"
],
"x-ms-correlation-request-id": [
- "9b5f8c66-ec28-49b4-9891-a7191a13ce28"
+ "7b5a20b6-0095-4a80-b289-15ab944bee52"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224253Z:9b5f8c66-ec28-49b4-9891-a7191a13ce28"
+ "NORTHCENTRALUS:20200519T190656Z:7b5a20b6-0095-4a80-b289-15ab944bee52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18717,7 +32199,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:52 GMT"
+ "Tue, 19 May 2020 19:06:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18726,20 +32208,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "058313f6-9824-47be-bb5c-e396588a4584"
+ "5f4acb7c-8779-4e0f-b2a5-72acf69505cf"
],
"Accept-Language": [
"en-US"
@@ -18762,16 +32244,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11802"
+ "11588"
],
"x-ms-request-id": [
- "090e313f-52b5-4190-a864-248e08b70162"
+ "4ecb17a1-3975-4e07-a27b-9decdf1a0fa7"
],
"x-ms-correlation-request-id": [
- "090e313f-52b5-4190-a864-248e08b70162"
+ "4ecb17a1-3975-4e07-a27b-9decdf1a0fa7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224253Z:090e313f-52b5-4190-a864-248e08b70162"
+ "NORTHCENTRALUS:20200519T190657Z:4ecb17a1-3975-4e07-a27b-9decdf1a0fa7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18780,7 +32262,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:52 GMT"
+ "Tue, 19 May 2020 19:06:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18789,20 +32271,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71cf0051-ef89-4fac-9a5f-b0c552f9ff42"
+ "21579fb0-b428-4a4b-a39c-6dbe578ec16d"
],
"Accept-Language": [
"en-US"
@@ -18825,16 +32307,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11800"
+ "11586"
],
"x-ms-request-id": [
- "f7436142-d529-4aff-a468-cbeaa8def4e4"
+ "040ffc65-a96f-4c35-a0b4-22271a8356c5"
],
"x-ms-correlation-request-id": [
- "f7436142-d529-4aff-a468-cbeaa8def4e4"
+ "040ffc65-a96f-4c35-a0b4-22271a8356c5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224254Z:f7436142-d529-4aff-a468-cbeaa8def4e4"
+ "NORTHCENTRALUS:20200519T190657Z:040ffc65-a96f-4c35-a0b4-22271a8356c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18843,7 +32325,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:53 GMT"
+ "Tue, 19 May 2020 19:06:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18852,20 +32334,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a564920-74de-4086-a84f-bb56a6dae9e2"
+ "2e220ccb-a8b6-45bb-bc60-2886fc0ba183"
],
"Accept-Language": [
"en-US"
@@ -18888,16 +32370,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11798"
+ "11584"
],
"x-ms-request-id": [
- "8f4b67a9-e65d-4674-bbf3-f66d8a87e43d"
+ "c061dacd-ffb2-4642-be4c-a28ba5ef3efa"
],
"x-ms-correlation-request-id": [
- "8f4b67a9-e65d-4674-bbf3-f66d8a87e43d"
+ "c061dacd-ffb2-4642-be4c-a28ba5ef3efa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224254Z:8f4b67a9-e65d-4674-bbf3-f66d8a87e43d"
+ "NORTHCENTRALUS:20200519T190657Z:c061dacd-ffb2-4642-be4c-a28ba5ef3efa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18906,7 +32388,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:53 GMT"
+ "Tue, 19 May 2020 19:06:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18915,20 +32397,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51466dc6-e5c8-4d83-bff2-15afd53ef3cc"
+ "7cfcbf3e-ad60-4aa2-bad5-9b4dce817f85"
],
"Accept-Language": [
"en-US"
@@ -18951,16 +32433,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11796"
+ "11582"
],
"x-ms-request-id": [
- "580ce75a-d0e4-44c9-a3be-b2c678c5a786"
+ "5ca8175d-b20c-4d8d-885f-541ad4035e5c"
],
"x-ms-correlation-request-id": [
- "580ce75a-d0e4-44c9-a3be-b2c678c5a786"
+ "5ca8175d-b20c-4d8d-885f-541ad4035e5c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224254Z:580ce75a-d0e4-44c9-a3be-b2c678c5a786"
+ "NORTHCENTRALUS:20200519T190658Z:5ca8175d-b20c-4d8d-885f-541ad4035e5c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -18969,7 +32451,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:53 GMT"
+ "Tue, 19 May 2020 19:06:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -18978,20 +32460,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70851555-e3f4-4948-a42e-baf5ac1dafbd"
+ "31997748-fc0f-40e2-a63b-a8d1ca7e666c"
],
"Accept-Language": [
"en-US"
@@ -19014,16 +32496,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11794"
+ "11580"
],
"x-ms-request-id": [
- "951b83b7-ace6-49bf-81e9-91f4c5688146"
+ "8c91d644-4027-4c27-98da-d0929c80d061"
],
"x-ms-correlation-request-id": [
- "951b83b7-ace6-49bf-81e9-91f4c5688146"
+ "8c91d644-4027-4c27-98da-d0929c80d061"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224255Z:951b83b7-ace6-49bf-81e9-91f4c5688146"
+ "NORTHCENTRALUS:20200519T190658Z:8c91d644-4027-4c27-98da-d0929c80d061"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19032,7 +32514,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:54 GMT"
+ "Tue, 19 May 2020 19:06:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19041,20 +32523,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe4169e9-09d3-4d2c-8320-f0b5078bed62"
+ "36e4b456-8453-4ff3-a0a2-00e0bdcc71e7"
],
"Accept-Language": [
"en-US"
@@ -19077,16 +32559,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11792"
+ "11578"
],
"x-ms-request-id": [
- "26d3528d-b02d-4bae-be75-0ce2fc034e09"
+ "590274ab-ca7d-4484-b27e-b728694806d5"
],
"x-ms-correlation-request-id": [
- "26d3528d-b02d-4bae-be75-0ce2fc034e09"
+ "590274ab-ca7d-4484-b27e-b728694806d5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224255Z:26d3528d-b02d-4bae-be75-0ce2fc034e09"
+ "NORTHCENTRALUS:20200519T190659Z:590274ab-ca7d-4484-b27e-b728694806d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19095,7 +32577,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:54 GMT"
+ "Tue, 19 May 2020 19:06:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19104,20 +32586,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01bd255e-e075-4a64-8c8d-da47a2176bb7"
+ "70f54bf7-46ab-47a9-a169-38d3360ccbba"
],
"Accept-Language": [
"en-US"
@@ -19140,16 +32622,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11790"
+ "11576"
],
"x-ms-request-id": [
- "c0ac90e2-21e1-49ad-8229-c3ff3f5f3e9b"
+ "7011bfda-416f-47b9-b601-2d0ffaed5336"
],
"x-ms-correlation-request-id": [
- "c0ac90e2-21e1-49ad-8229-c3ff3f5f3e9b"
+ "7011bfda-416f-47b9-b601-2d0ffaed5336"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224256Z:c0ac90e2-21e1-49ad-8229-c3ff3f5f3e9b"
+ "NORTHCENTRALUS:20200519T190659Z:7011bfda-416f-47b9-b601-2d0ffaed5336"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19158,7 +32640,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:55 GMT"
+ "Tue, 19 May 2020 19:06:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19167,20 +32649,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "027d53fa-7479-4867-8569-46e94b5d1ca2"
+ "706d2b37-d6a7-47ea-96ba-8df77566ebdf"
],
"Accept-Language": [
"en-US"
@@ -19203,16 +32685,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11788"
+ "11574"
],
"x-ms-request-id": [
- "c34baf23-8eb7-40f6-a840-e8645fc20fc5"
+ "f6004eeb-9bc0-4537-8c62-e694256f2f04"
],
"x-ms-correlation-request-id": [
- "c34baf23-8eb7-40f6-a840-e8645fc20fc5"
+ "f6004eeb-9bc0-4537-8c62-e694256f2f04"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224256Z:c34baf23-8eb7-40f6-a840-e8645fc20fc5"
+ "NORTHCENTRALUS:20200519T190700Z:f6004eeb-9bc0-4537-8c62-e694256f2f04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19221,7 +32703,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:55 GMT"
+ "Tue, 19 May 2020 19:06:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19230,20 +32712,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1a8b27a-1b82-436c-9cdf-707620964071"
+ "16c843c7-22ef-4939-bd3b-685535fa6264"
],
"Accept-Language": [
"en-US"
@@ -19266,16 +32748,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11786"
+ "11572"
],
"x-ms-request-id": [
- "ada9863c-8b7d-4097-8478-8e9cc23863dd"
+ "75e64eaa-e838-4163-a59b-82ca5abfd873"
],
"x-ms-correlation-request-id": [
- "ada9863c-8b7d-4097-8478-8e9cc23863dd"
+ "75e64eaa-e838-4163-a59b-82ca5abfd873"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224256Z:ada9863c-8b7d-4097-8478-8e9cc23863dd"
+ "NORTHCENTRALUS:20200519T190700Z:75e64eaa-e838-4163-a59b-82ca5abfd873"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19284,7 +32766,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:55 GMT"
+ "Tue, 19 May 2020 19:07:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19293,20 +32775,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7927e022-7f7a-4cb9-9ff5-c99616b60513"
+ "67532a31-a3e1-4bdc-8564-218bddc124d7"
],
"Accept-Language": [
"en-US"
@@ -19329,16 +32811,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11784"
+ "11570"
],
"x-ms-request-id": [
- "2d09e36b-679d-46bd-ae12-818f5779bacd"
+ "1a647e66-b58e-4e58-abdc-ba9d9e73b0b9"
],
"x-ms-correlation-request-id": [
- "2d09e36b-679d-46bd-ae12-818f5779bacd"
+ "1a647e66-b58e-4e58-abdc-ba9d9e73b0b9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224257Z:2d09e36b-679d-46bd-ae12-818f5779bacd"
+ "NORTHCENTRALUS:20200519T190700Z:1a647e66-b58e-4e58-abdc-ba9d9e73b0b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19347,7 +32829,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:56 GMT"
+ "Tue, 19 May 2020 19:07:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19356,20 +32838,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f31ebe2b-027c-4694-8fa1-77233488f7cd"
+ "0f2da2b7-9d3a-4ada-ab54-603f2b0c7c08"
],
"Accept-Language": [
"en-US"
@@ -19392,16 +32874,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11782"
+ "11568"
],
"x-ms-request-id": [
- "06559f83-700a-4983-a1f3-784f8217c89e"
+ "f3fe1cd6-19a8-4bc2-9912-f8117252f00c"
],
"x-ms-correlation-request-id": [
- "06559f83-700a-4983-a1f3-784f8217c89e"
+ "f3fe1cd6-19a8-4bc2-9912-f8117252f00c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224257Z:06559f83-700a-4983-a1f3-784f8217c89e"
+ "NORTHCENTRALUS:20200519T190701Z:f3fe1cd6-19a8-4bc2-9912-f8117252f00c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19410,7 +32892,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:56 GMT"
+ "Tue, 19 May 2020 19:07:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19419,20 +32901,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "274ed6bd-b65f-460c-b97d-b224d2c82100"
+ "347761a1-3130-4f96-8fdc-451f8b3113e6"
],
"Accept-Language": [
"en-US"
@@ -19455,16 +32937,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11780"
+ "11566"
],
"x-ms-request-id": [
- "dbd2d938-0382-493a-91cc-ea2646718ebf"
+ "d389820d-9b9c-4dda-9695-9a236f9582d4"
],
"x-ms-correlation-request-id": [
- "dbd2d938-0382-493a-91cc-ea2646718ebf"
+ "d389820d-9b9c-4dda-9695-9a236f9582d4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224258Z:dbd2d938-0382-493a-91cc-ea2646718ebf"
+ "NORTHCENTRALUS:20200519T190701Z:d389820d-9b9c-4dda-9695-9a236f9582d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19473,7 +32955,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:57 GMT"
+ "Tue, 19 May 2020 19:07:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19482,20 +32964,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f761b6d9-9036-482a-8384-446342dbf335"
+ "5bfb5e9c-0a5f-4a5f-8c5c-96e78b2f7b40"
],
"Accept-Language": [
"en-US"
@@ -19518,16 +33000,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11778"
+ "11564"
],
"x-ms-request-id": [
- "c215a954-b384-4d23-b518-b17df13a2a1a"
+ "f63c8d0a-68b1-408b-b000-9c89a235434d"
],
"x-ms-correlation-request-id": [
- "c215a954-b384-4d23-b518-b17df13a2a1a"
+ "f63c8d0a-68b1-408b-b000-9c89a235434d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224258Z:c215a954-b384-4d23-b518-b17df13a2a1a"
+ "NORTHCENTRALUS:20200519T190701Z:f63c8d0a-68b1-408b-b000-9c89a235434d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19536,7 +33018,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:57 GMT"
+ "Tue, 19 May 2020 19:07:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19545,20 +33027,20 @@
"-1"
],
"Content-Length": [
- "1324"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:49.8211144Z\",\r\n \"duration\": \"PT37.752799S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eae73c62-62b5-4cb4-a2dc-53d303f45b5d"
+ "c6dac2be-2fb6-4be0-b29d-e2570ef496fd"
],
"Accept-Language": [
"en-US"
@@ -19581,16 +33063,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11776"
+ "11562"
],
"x-ms-request-id": [
- "85232f88-9e8e-41c5-992a-a2a5072dd614"
+ "e8439673-6b78-4755-ada2-aa6207c78297"
],
"x-ms-correlation-request-id": [
- "85232f88-9e8e-41c5-992a-a2a5072dd614"
+ "e8439673-6b78-4755-ada2-aa6207c78297"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224258Z:85232f88-9e8e-41c5-992a-a2a5072dd614"
+ "NORTHCENTRALUS:20200519T190702Z:e8439673-6b78-4755-ada2-aa6207c78297"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19599,7 +33081,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:57 GMT"
+ "Tue, 19 May 2020 19:07:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19611,17 +33093,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25cfeaf4-7203-4d28-b19e-b940c7ff92bf"
+ "f0621b65-ae0a-45ca-816f-1bbd54e33dcf"
],
"Accept-Language": [
"en-US"
@@ -19644,16 +33126,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11774"
+ "11560"
],
"x-ms-request-id": [
- "fad0a509-9e2d-441c-b492-23843a963a13"
+ "caea9178-f2b3-43c9-ab37-743207c477f5"
],
"x-ms-correlation-request-id": [
- "fad0a509-9e2d-441c-b492-23843a963a13"
+ "caea9178-f2b3-43c9-ab37-743207c477f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224259Z:fad0a509-9e2d-441c-b492-23843a963a13"
+ "NORTHCENTRALUS:20200519T190702Z:caea9178-f2b3-43c9-ab37-743207c477f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19662,7 +33144,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:59 GMT"
+ "Tue, 19 May 2020 19:07:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19674,17 +33156,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1d3e69e-27a2-43f0-b944-7906e1761adb"
+ "0a07fc35-f9db-45fd-9273-9546a276fef9"
],
"Accept-Language": [
"en-US"
@@ -19707,16 +33189,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11772"
+ "11558"
],
"x-ms-request-id": [
- "3e478046-47fc-4aff-a3fa-fdbb0b3234cb"
+ "eb01501c-d374-4cd2-a6e8-01b692e426ad"
],
"x-ms-correlation-request-id": [
- "3e478046-47fc-4aff-a3fa-fdbb0b3234cb"
+ "eb01501c-d374-4cd2-a6e8-01b692e426ad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224259Z:3e478046-47fc-4aff-a3fa-fdbb0b3234cb"
+ "NORTHCENTRALUS:20200519T190703Z:eb01501c-d374-4cd2-a6e8-01b692e426ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19725,7 +33207,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:42:59 GMT"
+ "Tue, 19 May 2020 19:07:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19737,17 +33219,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff358e87-243a-43a6-b590-e87cc712764e"
+ "63800693-17a0-4072-b00e-8fbb2f92c93b"
],
"Accept-Language": [
"en-US"
@@ -19770,16 +33252,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11770"
+ "11556"
],
"x-ms-request-id": [
- "9d4afd36-6e84-471f-8989-f1fdd233a3d7"
+ "5b9cf6ed-b9a6-4379-82f6-f34a3edea7e4"
],
"x-ms-correlation-request-id": [
- "9d4afd36-6e84-471f-8989-f1fdd233a3d7"
+ "5b9cf6ed-b9a6-4379-82f6-f34a3edea7e4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224300Z:9d4afd36-6e84-471f-8989-f1fdd233a3d7"
+ "NORTHCENTRALUS:20200519T190703Z:5b9cf6ed-b9a6-4379-82f6-f34a3edea7e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19788,7 +33270,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:00 GMT"
+ "Tue, 19 May 2020 19:07:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19800,17 +33282,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f179913-f4f8-4d4d-a517-1b14ce5a1a5f"
+ "b1693cae-3c2a-41bd-8af8-36a9681de342"
],
"Accept-Language": [
"en-US"
@@ -19833,16 +33315,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11768"
+ "11554"
],
"x-ms-request-id": [
- "d23a8e62-eab5-48c2-899c-97003f2fb0e1"
+ "6592019a-4ad3-49c3-8097-a9a3e4b40c73"
],
"x-ms-correlation-request-id": [
- "d23a8e62-eab5-48c2-899c-97003f2fb0e1"
+ "6592019a-4ad3-49c3-8097-a9a3e4b40c73"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224300Z:d23a8e62-eab5-48c2-899c-97003f2fb0e1"
+ "NORTHCENTRALUS:20200519T190703Z:6592019a-4ad3-49c3-8097-a9a3e4b40c73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19851,7 +33333,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:00 GMT"
+ "Tue, 19 May 2020 19:07:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19863,17 +33345,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "337fa90b-0225-4508-8593-97f914e13722"
+ "fc54ee1b-0eb2-40e5-b2eb-b8be6b72b4fc"
],
"Accept-Language": [
"en-US"
@@ -19896,16 +33378,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11766"
+ "11552"
],
"x-ms-request-id": [
- "dda2cc37-980d-4b62-9755-c15f72025149"
+ "e0c44c32-9d32-44df-a4fe-477b0b26e8e9"
],
"x-ms-correlation-request-id": [
- "dda2cc37-980d-4b62-9755-c15f72025149"
+ "e0c44c32-9d32-44df-a4fe-477b0b26e8e9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224300Z:dda2cc37-980d-4b62-9755-c15f72025149"
+ "NORTHCENTRALUS:20200519T190704Z:e0c44c32-9d32-44df-a4fe-477b0b26e8e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19914,7 +33396,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:00 GMT"
+ "Tue, 19 May 2020 19:07:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19926,17 +33408,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43076a7b-daaa-4178-a673-3cac8a6ffe83"
+ "9e03f217-642e-4add-a4ff-9824a99b0579"
],
"Accept-Language": [
"en-US"
@@ -19959,16 +33441,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11764"
+ "11550"
],
"x-ms-request-id": [
- "c7825652-9803-4927-8dd1-7b7277936189"
+ "a4b4d985-0673-4a98-b2ce-f3c342a82c83"
],
"x-ms-correlation-request-id": [
- "c7825652-9803-4927-8dd1-7b7277936189"
+ "a4b4d985-0673-4a98-b2ce-f3c342a82c83"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224301Z:c7825652-9803-4927-8dd1-7b7277936189"
+ "NORTHCENTRALUS:20200519T190704Z:a4b4d985-0673-4a98-b2ce-f3c342a82c83"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19977,7 +33459,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:01 GMT"
+ "Tue, 19 May 2020 19:07:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19989,17 +33471,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64c42a05-3c69-438b-9c8b-56e5cbbdc8b0"
+ "b900dcce-a448-4eb3-9890-2c46feb5fbc4"
],
"Accept-Language": [
"en-US"
@@ -20022,16 +33504,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11762"
+ "11548"
],
"x-ms-request-id": [
- "2a278242-7886-40d9-84f7-e2c2447c6b2e"
+ "0283b36a-668c-4191-ae0c-2a8198c275e7"
],
"x-ms-correlation-request-id": [
- "2a278242-7886-40d9-84f7-e2c2447c6b2e"
+ "0283b36a-668c-4191-ae0c-2a8198c275e7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224301Z:2a278242-7886-40d9-84f7-e2c2447c6b2e"
+ "NORTHCENTRALUS:20200519T190705Z:0283b36a-668c-4191-ae0c-2a8198c275e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20040,7 +33522,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:01 GMT"
+ "Tue, 19 May 2020 19:07:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20052,17 +33534,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d00b4ebf-8e17-4bda-9e5e-e6217164ad27"
+ "eb11dfdf-8d62-4e21-9f3d-7976fdcfc44c"
],
"Accept-Language": [
"en-US"
@@ -20085,16 +33567,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11760"
+ "11546"
],
"x-ms-request-id": [
- "8820b712-84c3-4fbf-9504-f14367956efb"
+ "2aee6f27-fb1d-4937-8629-85ef2b90e7e1"
],
"x-ms-correlation-request-id": [
- "8820b712-84c3-4fbf-9504-f14367956efb"
+ "2aee6f27-fb1d-4937-8629-85ef2b90e7e1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224302Z:8820b712-84c3-4fbf-9504-f14367956efb"
+ "NORTHCENTRALUS:20200519T190705Z:2aee6f27-fb1d-4937-8629-85ef2b90e7e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20103,7 +33585,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:02 GMT"
+ "Tue, 19 May 2020 19:07:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20115,17 +33597,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29ef678b-3809-497e-80a8-5d6cff5bcc31"
+ "8a257625-d9eb-428f-b976-b377f73d6dc4"
],
"Accept-Language": [
"en-US"
@@ -20148,16 +33630,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11758"
+ "11544"
],
"x-ms-request-id": [
- "2922c13b-ad52-4f18-a86f-cd1281a9d316"
+ "e93b363e-5e3b-42d1-b298-1f83c76bc045"
],
"x-ms-correlation-request-id": [
- "2922c13b-ad52-4f18-a86f-cd1281a9d316"
+ "e93b363e-5e3b-42d1-b298-1f83c76bc045"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224302Z:2922c13b-ad52-4f18-a86f-cd1281a9d316"
+ "NORTHCENTRALUS:20200519T190705Z:e93b363e-5e3b-42d1-b298-1f83c76bc045"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20166,7 +33648,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:02 GMT"
+ "Tue, 19 May 2020 19:07:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20178,17 +33660,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4199f566-ce41-4d4c-81f8-7a0fef3718ae"
+ "8b234fd3-99c3-453e-b03c-6b5f523d6e05"
],
"Accept-Language": [
"en-US"
@@ -20211,16 +33693,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11756"
+ "11542"
],
"x-ms-request-id": [
- "70880b85-8cac-498e-914b-1aeeeda22ce6"
+ "3baaa23b-99e9-47bf-a8fe-0eead15b7608"
],
"x-ms-correlation-request-id": [
- "70880b85-8cac-498e-914b-1aeeeda22ce6"
+ "3baaa23b-99e9-47bf-a8fe-0eead15b7608"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224303Z:70880b85-8cac-498e-914b-1aeeeda22ce6"
+ "NORTHCENTRALUS:20200519T190706Z:3baaa23b-99e9-47bf-a8fe-0eead15b7608"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20229,7 +33711,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:02 GMT"
+ "Tue, 19 May 2020 19:07:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20241,17 +33723,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "36415c57-7498-498a-8ca1-515f6e09075d"
+ "ffeb1c32-f409-409c-99f6-b769e421dd0c"
],
"Accept-Language": [
"en-US"
@@ -20274,16 +33756,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11754"
+ "11540"
],
"x-ms-request-id": [
- "3f643316-0a8d-4338-a84e-0940f05b9227"
+ "21b9bf3b-905c-4cbf-971d-fbcf6b3cd999"
],
"x-ms-correlation-request-id": [
- "3f643316-0a8d-4338-a84e-0940f05b9227"
+ "21b9bf3b-905c-4cbf-971d-fbcf6b3cd999"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224303Z:3f643316-0a8d-4338-a84e-0940f05b9227"
+ "NORTHCENTRALUS:20200519T190706Z:21b9bf3b-905c-4cbf-971d-fbcf6b3cd999"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20292,7 +33774,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:03 GMT"
+ "Tue, 19 May 2020 19:07:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20304,17 +33786,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18e3bf36-166e-4885-89e1-4990c8abf07d"
+ "efd9e695-1ba8-4862-88f3-3db282533116"
],
"Accept-Language": [
"en-US"
@@ -20337,16 +33819,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11752"
+ "11538"
],
"x-ms-request-id": [
- "d31eadf4-1114-4571-b9a1-79f0cd4a2a8b"
+ "f882117a-a18c-490b-a70c-5f8b239c6f48"
],
"x-ms-correlation-request-id": [
- "d31eadf4-1114-4571-b9a1-79f0cd4a2a8b"
+ "f882117a-a18c-490b-a70c-5f8b239c6f48"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224303Z:d31eadf4-1114-4571-b9a1-79f0cd4a2a8b"
+ "NORTHCENTRALUS:20200519T190707Z:f882117a-a18c-490b-a70c-5f8b239c6f48"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20355,7 +33837,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:03 GMT"
+ "Tue, 19 May 2020 19:07:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20367,17 +33849,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be85b1fe-acbe-4934-8123-6216b0fd2c07"
+ "d96f4106-0292-46db-8e98-d40592b827f1"
],
"Accept-Language": [
"en-US"
@@ -20400,16 +33882,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11750"
+ "11536"
],
"x-ms-request-id": [
- "4d231a78-ceb9-456b-b549-4973c0d8b876"
+ "746aca3a-d177-4493-a492-efe03f62d3b1"
],
"x-ms-correlation-request-id": [
- "4d231a78-ceb9-456b-b549-4973c0d8b876"
+ "746aca3a-d177-4493-a492-efe03f62d3b1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224304Z:4d231a78-ceb9-456b-b549-4973c0d8b876"
+ "NORTHCENTRALUS:20200519T190707Z:746aca3a-d177-4493-a492-efe03f62d3b1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20418,7 +33900,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:04 GMT"
+ "Tue, 19 May 2020 19:07:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20430,17 +33912,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:06:54.6464006Z\",\r\n \"duration\": \"PT1M27.3735116S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3ccfebc-2484-4003-9b4d-2764d021f63c"
+ "5073f52e-2b6b-40c8-b1c9-54c47a0918a2"
],
"Accept-Language": [
"en-US"
@@ -20463,16 +33945,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11748"
+ "11534"
],
"x-ms-request-id": [
- "488ac607-5853-4e04-b14b-450211f65d74"
+ "2d8e3b7f-0fa4-41c9-b2b6-7dce471e91e6"
],
"x-ms-correlation-request-id": [
- "488ac607-5853-4e04-b14b-450211f65d74"
+ "2d8e3b7f-0fa4-41c9-b2b6-7dce471e91e6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224304Z:488ac607-5853-4e04-b14b-450211f65d74"
+ "NORTHCENTRALUS:20200519T190707Z:2d8e3b7f-0fa4-41c9-b2b6-7dce471e91e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20481,7 +33963,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:04 GMT"
+ "Tue, 19 May 2020 19:07:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20493,17 +33975,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb6b6aa5-bd34-486c-9988-8e8f18923f02"
+ "93c60cac-c677-42b9-82ca-d22ae9692400"
],
"Accept-Language": [
"en-US"
@@ -20526,16 +34008,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11746"
+ "11532"
],
"x-ms-request-id": [
- "2592be3e-4643-4849-9097-b641a2433095"
+ "8aab67e7-1c3e-4d6c-9376-5cbf73ba3599"
],
"x-ms-correlation-request-id": [
- "2592be3e-4643-4849-9097-b641a2433095"
+ "8aab67e7-1c3e-4d6c-9376-5cbf73ba3599"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224305Z:2592be3e-4643-4849-9097-b641a2433095"
+ "NORTHCENTRALUS:20200519T190708Z:8aab67e7-1c3e-4d6c-9376-5cbf73ba3599"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20544,7 +34026,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:04 GMT"
+ "Tue, 19 May 2020 19:07:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20556,17 +34038,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4dd2c50-2c58-4b79-a4ca-ee4282d10515"
+ "9b115948-edc5-4c8c-9b72-9829703e4162"
],
"Accept-Language": [
"en-US"
@@ -20589,16 +34071,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11744"
+ "11530"
],
"x-ms-request-id": [
- "fbbd30ed-dd27-4996-a3a6-0f816dd178ea"
+ "0018656b-8aaa-43b1-adc1-e674c63f836d"
],
"x-ms-correlation-request-id": [
- "fbbd30ed-dd27-4996-a3a6-0f816dd178ea"
+ "0018656b-8aaa-43b1-adc1-e674c63f836d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224305Z:fbbd30ed-dd27-4996-a3a6-0f816dd178ea"
+ "NORTHCENTRALUS:20200519T190708Z:0018656b-8aaa-43b1-adc1-e674c63f836d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20607,7 +34089,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:05 GMT"
+ "Tue, 19 May 2020 19:07:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20619,17 +34101,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05bdb1f9-906f-4a79-a287-56039ba806a1"
+ "57da5d85-a788-47e0-8e7b-9d90960ea047"
],
"Accept-Language": [
"en-US"
@@ -20652,16 +34134,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11742"
+ "11528"
],
"x-ms-request-id": [
- "4b3849c1-15ad-4620-aea0-22a7ca4e84ba"
+ "395c0ead-eab5-4355-8b2b-ef8ce320b0c2"
],
"x-ms-correlation-request-id": [
- "4b3849c1-15ad-4620-aea0-22a7ca4e84ba"
+ "395c0ead-eab5-4355-8b2b-ef8ce320b0c2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224305Z:4b3849c1-15ad-4620-aea0-22a7ca4e84ba"
+ "NORTHCENTRALUS:20200519T190709Z:395c0ead-eab5-4355-8b2b-ef8ce320b0c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20670,7 +34152,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:05 GMT"
+ "Tue, 19 May 2020 19:07:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20682,17 +34164,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e06d9fa-eccd-412a-b4cf-77b2ed0506d2"
+ "89004d76-0acf-4bce-8b24-3b4ffbc3a89f"
],
"Accept-Language": [
"en-US"
@@ -20715,16 +34197,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11740"
+ "11526"
],
"x-ms-request-id": [
- "4b865ed7-b7bd-4ae4-8a5b-31dff7fb2512"
+ "584fa8c8-ef5c-457f-bc80-185faeef4c38"
],
"x-ms-correlation-request-id": [
- "4b865ed7-b7bd-4ae4-8a5b-31dff7fb2512"
+ "584fa8c8-ef5c-457f-bc80-185faeef4c38"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224306Z:4b865ed7-b7bd-4ae4-8a5b-31dff7fb2512"
+ "NORTHCENTRALUS:20200519T190709Z:584fa8c8-ef5c-457f-bc80-185faeef4c38"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20733,7 +34215,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:05 GMT"
+ "Tue, 19 May 2020 19:07:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20745,17 +34227,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96ff64f5-3728-4c09-8999-b0be528a3de7"
+ "1366a5b2-53e2-4992-a2d6-09532a8e2dee"
],
"Accept-Language": [
"en-US"
@@ -20778,16 +34260,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11738"
+ "11524"
],
"x-ms-request-id": [
- "098cd2d8-78bb-4387-a428-2bc0971740f7"
+ "ff73fd96-071f-48af-abd9-00752a417535"
],
"x-ms-correlation-request-id": [
- "098cd2d8-78bb-4387-a428-2bc0971740f7"
+ "ff73fd96-071f-48af-abd9-00752a417535"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224306Z:098cd2d8-78bb-4387-a428-2bc0971740f7"
+ "NORTHCENTRALUS:20200519T190710Z:ff73fd96-071f-48af-abd9-00752a417535"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20796,7 +34278,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:06 GMT"
+ "Tue, 19 May 2020 19:07:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20808,17 +34290,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58733e4b-e77e-462a-bb9b-f5070eab9be5"
+ "2e393873-6f4f-41cd-9bdc-3e759ea7b8ff"
],
"Accept-Language": [
"en-US"
@@ -20841,16 +34323,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11736"
+ "11522"
],
"x-ms-request-id": [
- "3df7cbd9-9435-4d63-bec0-6009e91c8c6c"
+ "3ae3061c-6dff-4693-9761-7b143e8ac387"
],
"x-ms-correlation-request-id": [
- "3df7cbd9-9435-4d63-bec0-6009e91c8c6c"
+ "3ae3061c-6dff-4693-9761-7b143e8ac387"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224307Z:3df7cbd9-9435-4d63-bec0-6009e91c8c6c"
+ "NORTHCENTRALUS:20200519T190710Z:3ae3061c-6dff-4693-9761-7b143e8ac387"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20859,7 +34341,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:06 GMT"
+ "Tue, 19 May 2020 19:07:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20871,17 +34353,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfe1c49f-c710-4754-b184-c6ca2a46d770"
+ "1a6df637-1af8-4e22-ae5e-4396aa685d16"
],
"Accept-Language": [
"en-US"
@@ -20904,16 +34386,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11734"
+ "11520"
],
"x-ms-request-id": [
- "c46210de-c486-4e29-bfca-33005a76e572"
+ "50daf60e-b98e-4ffc-8358-b464a2a80cb6"
],
"x-ms-correlation-request-id": [
- "c46210de-c486-4e29-bfca-33005a76e572"
+ "50daf60e-b98e-4ffc-8358-b464a2a80cb6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224307Z:c46210de-c486-4e29-bfca-33005a76e572"
+ "NORTHCENTRALUS:20200519T190711Z:50daf60e-b98e-4ffc-8358-b464a2a80cb6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20922,7 +34404,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:07 GMT"
+ "Tue, 19 May 2020 19:07:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20934,17 +34416,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51751e04-2a73-4a06-8041-c5996f0f8dff"
+ "99718b9c-34ee-469b-9ae9-3f96fbb67f06"
],
"Accept-Language": [
"en-US"
@@ -20967,16 +34449,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11732"
+ "11518"
],
"x-ms-request-id": [
- "a7befd8c-5362-486e-9d3f-f084cf88b0c0"
+ "17509e7a-e705-4653-a778-7e8802cd3caf"
],
"x-ms-correlation-request-id": [
- "a7befd8c-5362-486e-9d3f-f084cf88b0c0"
+ "17509e7a-e705-4653-a778-7e8802cd3caf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224307Z:a7befd8c-5362-486e-9d3f-f084cf88b0c0"
+ "NORTHCENTRALUS:20200519T190711Z:17509e7a-e705-4653-a778-7e8802cd3caf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20985,7 +34467,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:07 GMT"
+ "Tue, 19 May 2020 19:07:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20997,17 +34479,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e218e12-c5c0-4042-80bc-ed2ec408ad64"
+ "632aee2b-2dc8-4f62-8cdc-425e94a47d3f"
],
"Accept-Language": [
"en-US"
@@ -21030,16 +34512,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11730"
+ "11516"
],
"x-ms-request-id": [
- "2a032930-5179-400c-a36a-93835bf0826c"
+ "52958b54-3dbc-48fb-b7b4-39a0bd1ac131"
],
"x-ms-correlation-request-id": [
- "2a032930-5179-400c-a36a-93835bf0826c"
+ "52958b54-3dbc-48fb-b7b4-39a0bd1ac131"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224308Z:2a032930-5179-400c-a36a-93835bf0826c"
+ "NORTHCENTRALUS:20200519T190711Z:52958b54-3dbc-48fb-b7b4-39a0bd1ac131"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21048,7 +34530,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:07 GMT"
+ "Tue, 19 May 2020 19:07:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21060,17 +34542,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:42:58.6671643Z\",\r\n \"duration\": \"PT46.5988489S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ced1fd9-8243-407a-a991-cd3caa0c064d"
+ "f4f63217-5e40-47ea-abac-03204624a131"
],
"Accept-Language": [
"en-US"
@@ -21093,16 +34575,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11728"
+ "11514"
],
"x-ms-request-id": [
- "e4d881cf-5ee3-4177-9b3a-ad1be26b939b"
+ "2ab8e6f1-0a10-4011-bcdb-5b40f7e7f08c"
],
"x-ms-correlation-request-id": [
- "e4d881cf-5ee3-4177-9b3a-ad1be26b939b"
+ "2ab8e6f1-0a10-4011-bcdb-5b40f7e7f08c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224308Z:e4d881cf-5ee3-4177-9b3a-ad1be26b939b"
+ "NORTHCENTRALUS:20200519T190712Z:2ab8e6f1-0a10-4011-bcdb-5b40f7e7f08c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21111,7 +34593,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:08 GMT"
+ "Tue, 19 May 2020 19:07:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21123,17 +34605,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8933342-009f-45b3-8322-4df78ec48a85"
+ "cfa6247b-700e-46a3-bab8-ea3713d5217c"
],
"Accept-Language": [
"en-US"
@@ -21156,16 +34638,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11726"
+ "11512"
],
"x-ms-request-id": [
- "ff7ccd05-0e24-4d43-86f9-297b5eeabf49"
+ "0c7dd027-0bd4-4a4e-a70b-85679c8a9979"
],
"x-ms-correlation-request-id": [
- "ff7ccd05-0e24-4d43-86f9-297b5eeabf49"
+ "0c7dd027-0bd4-4a4e-a70b-85679c8a9979"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224309Z:ff7ccd05-0e24-4d43-86f9-297b5eeabf49"
+ "NORTHCENTRALUS:20200519T190712Z:0c7dd027-0bd4-4a4e-a70b-85679c8a9979"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21174,7 +34656,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:08 GMT"
+ "Tue, 19 May 2020 19:07:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21186,17 +34668,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a5487219-d762-4281-9c5c-3630e024b9e7"
+ "049d1935-6fe9-4e3d-a24c-0f6a1726e06c"
],
"Accept-Language": [
"en-US"
@@ -21219,16 +34701,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11724"
+ "11510"
],
"x-ms-request-id": [
- "6d7df01a-e474-4271-b70e-1c85ec83f430"
+ "7bd6dbc5-7f39-488a-b8ba-92d8b046aa79"
],
"x-ms-correlation-request-id": [
- "6d7df01a-e474-4271-b70e-1c85ec83f430"
+ "7bd6dbc5-7f39-488a-b8ba-92d8b046aa79"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224309Z:6d7df01a-e474-4271-b70e-1c85ec83f430"
+ "NORTHCENTRALUS:20200519T190713Z:7bd6dbc5-7f39-488a-b8ba-92d8b046aa79"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21237,7 +34719,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:09 GMT"
+ "Tue, 19 May 2020 19:07:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21249,17 +34731,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa24e264-1db6-4540-9679-2820f6b49e41"
+ "1edf7518-ae95-4138-8dc4-fdb2b540b180"
],
"Accept-Language": [
"en-US"
@@ -21282,16 +34764,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11722"
+ "11508"
],
"x-ms-request-id": [
- "8dbf0493-2499-4786-a73b-96bc1dafc6de"
+ "b2eb9a95-4906-41df-a56d-f1eb981e452a"
],
"x-ms-correlation-request-id": [
- "8dbf0493-2499-4786-a73b-96bc1dafc6de"
+ "b2eb9a95-4906-41df-a56d-f1eb981e452a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224310Z:8dbf0493-2499-4786-a73b-96bc1dafc6de"
+ "NORTHCENTRALUS:20200519T190713Z:b2eb9a95-4906-41df-a56d-f1eb981e452a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21300,7 +34782,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:09 GMT"
+ "Tue, 19 May 2020 19:07:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21312,17 +34794,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21bddded-7b3f-43ea-8bc9-5abdb281e8b7"
+ "a4596d73-2c07-4799-add9-5051550be8ed"
],
"Accept-Language": [
"en-US"
@@ -21345,16 +34827,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11720"
+ "11506"
],
"x-ms-request-id": [
- "4c4987ac-37c5-4a02-ba15-25df062a299d"
+ "60a79c79-5a70-4340-add6-1091b7436bc0"
],
"x-ms-correlation-request-id": [
- "4c4987ac-37c5-4a02-ba15-25df062a299d"
+ "60a79c79-5a70-4340-add6-1091b7436bc0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224310Z:4c4987ac-37c5-4a02-ba15-25df062a299d"
+ "NORTHCENTRALUS:20200519T190714Z:60a79c79-5a70-4340-add6-1091b7436bc0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21363,7 +34845,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:09 GMT"
+ "Tue, 19 May 2020 19:07:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21375,17 +34857,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69d1b44a-569a-4b61-a52d-bdd2e033b238"
+ "12ba78f2-69c0-4788-afb7-c6a5aa997e7e"
],
"Accept-Language": [
"en-US"
@@ -21408,16 +34890,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11718"
+ "11504"
],
"x-ms-request-id": [
- "03453d84-6563-4e4f-913c-c4f1b2c8dd24"
+ "ecf9d9ee-b256-40b2-9294-72444a065b9d"
],
"x-ms-correlation-request-id": [
- "03453d84-6563-4e4f-913c-c4f1b2c8dd24"
+ "ecf9d9ee-b256-40b2-9294-72444a065b9d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224310Z:03453d84-6563-4e4f-913c-c4f1b2c8dd24"
+ "NORTHCENTRALUS:20200519T190714Z:ecf9d9ee-b256-40b2-9294-72444a065b9d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21426,7 +34908,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:10 GMT"
+ "Tue, 19 May 2020 19:07:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21438,17 +34920,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c44c9424-15cb-4d40-8746-b6f29a33971c"
+ "e5cbfa24-ea65-42b9-b241-a27ec0bb93bd"
],
"Accept-Language": [
"en-US"
@@ -21471,16 +34953,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11716"
+ "11502"
],
"x-ms-request-id": [
- "068d4f3f-7de6-4295-8e35-ae272941312d"
+ "a63fd86b-4645-4707-9eee-59867f4d4386"
],
"x-ms-correlation-request-id": [
- "068d4f3f-7de6-4295-8e35-ae272941312d"
+ "a63fd86b-4645-4707-9eee-59867f4d4386"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224311Z:068d4f3f-7de6-4295-8e35-ae272941312d"
+ "NORTHCENTRALUS:20200519T190714Z:a63fd86b-4645-4707-9eee-59867f4d4386"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21489,7 +34971,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:10 GMT"
+ "Tue, 19 May 2020 19:07:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21501,17 +34983,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f4e9ffe-902c-4dbe-938b-4b717386b18b"
+ "1fb9905b-3cd7-46fa-9d63-c96b10b9e594"
],
"Accept-Language": [
"en-US"
@@ -21534,16 +35016,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11714"
+ "11500"
],
"x-ms-request-id": [
- "b0295bbc-d5a7-49ff-9f2c-847f0e6753fb"
+ "9e456631-84de-4383-b518-5feeb2bfa73c"
],
"x-ms-correlation-request-id": [
- "b0295bbc-d5a7-49ff-9f2c-847f0e6753fb"
+ "9e456631-84de-4383-b518-5feeb2bfa73c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224311Z:b0295bbc-d5a7-49ff-9f2c-847f0e6753fb"
+ "NORTHCENTRALUS:20200519T190715Z:9e456631-84de-4383-b518-5feeb2bfa73c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21552,7 +35034,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:11 GMT"
+ "Tue, 19 May 2020 19:07:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21564,17 +35046,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a19ee7d-544d-4a9e-9d5a-00895e3fbe13"
+ "27199765-8e65-4bf7-b4b0-4afa380b1564"
],
"Accept-Language": [
"en-US"
@@ -21597,16 +35079,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11712"
+ "11498"
],
"x-ms-request-id": [
- "378d690d-2e16-402b-9c57-f3eabe650ba0"
+ "f103ad6e-1583-4273-9a8c-7dc43aeee601"
],
"x-ms-correlation-request-id": [
- "378d690d-2e16-402b-9c57-f3eabe650ba0"
+ "f103ad6e-1583-4273-9a8c-7dc43aeee601"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224312Z:378d690d-2e16-402b-9c57-f3eabe650ba0"
+ "NORTHCENTRALUS:20200519T190715Z:f103ad6e-1583-4273-9a8c-7dc43aeee601"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21615,7 +35097,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:11 GMT"
+ "Tue, 19 May 2020 19:07:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21627,17 +35109,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cce4910f-76e1-4932-b5e2-0560dc36c42d"
+ "0240fbab-92f9-4197-af42-cd854eec5ceb"
],
"Accept-Language": [
"en-US"
@@ -21660,16 +35142,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11710"
+ "11496"
],
"x-ms-request-id": [
- "8f12856c-3aff-49c1-bd62-59f6a531272f"
+ "39e7085c-7285-4dee-9303-cba4832666c0"
],
"x-ms-correlation-request-id": [
- "8f12856c-3aff-49c1-bd62-59f6a531272f"
+ "39e7085c-7285-4dee-9303-cba4832666c0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224312Z:8f12856c-3aff-49c1-bd62-59f6a531272f"
+ "NORTHCENTRALUS:20200519T190716Z:39e7085c-7285-4dee-9303-cba4832666c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21678,7 +35160,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:12 GMT"
+ "Tue, 19 May 2020 19:07:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21690,17 +35172,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07bcf542-8b55-4c7c-9083-d6a98258d89e"
+ "507a9359-3555-4e4b-85b3-d4ace4eeaa52"
],
"Accept-Language": [
"en-US"
@@ -21723,16 +35205,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11708"
+ "11494"
],
"x-ms-request-id": [
- "360be2c7-5702-4808-b447-0129607e1300"
+ "b8db2aa9-9c6a-4e64-99fe-94d81e9325e1"
],
"x-ms-correlation-request-id": [
- "360be2c7-5702-4808-b447-0129607e1300"
+ "b8db2aa9-9c6a-4e64-99fe-94d81e9325e1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224312Z:360be2c7-5702-4808-b447-0129607e1300"
+ "NORTHCENTRALUS:20200519T190716Z:b8db2aa9-9c6a-4e64-99fe-94d81e9325e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21741,7 +35223,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:12 GMT"
+ "Tue, 19 May 2020 19:07:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21753,17 +35235,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "291e69be-90dd-4165-8c0f-4ddd31b9bb6e"
+ "2e14bb65-b922-4948-9bee-bd3013075740"
],
"Accept-Language": [
"en-US"
@@ -21786,16 +35268,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11706"
+ "11492"
],
"x-ms-request-id": [
- "9147feef-cbf8-4809-90d6-fe04cdc39cb9"
+ "4d524c69-3168-4811-84ff-71e5604ffea8"
],
"x-ms-correlation-request-id": [
- "9147feef-cbf8-4809-90d6-fe04cdc39cb9"
+ "4d524c69-3168-4811-84ff-71e5604ffea8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224313Z:9147feef-cbf8-4809-90d6-fe04cdc39cb9"
+ "NORTHCENTRALUS:20200519T190717Z:4d524c69-3168-4811-84ff-71e5604ffea8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21804,7 +35286,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:12 GMT"
+ "Tue, 19 May 2020 19:07:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21816,17 +35298,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "185ef184-aa62-486f-b9b3-ca4f2501937a"
+ "abb82682-3c7d-45c9-9e67-69c080cbf9e4"
],
"Accept-Language": [
"en-US"
@@ -21849,16 +35331,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11704"
+ "11490"
],
"x-ms-request-id": [
- "30b5c702-781f-4f88-8846-e8f9afe36da5"
+ "4c295a88-81a9-403f-9d51-b13fe45131f8"
],
"x-ms-correlation-request-id": [
- "30b5c702-781f-4f88-8846-e8f9afe36da5"
+ "4c295a88-81a9-403f-9d51-b13fe45131f8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224313Z:30b5c702-781f-4f88-8846-e8f9afe36da5"
+ "NORTHCENTRALUS:20200519T190717Z:4c295a88-81a9-403f-9d51-b13fe45131f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21867,7 +35349,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:13 GMT"
+ "Tue, 19 May 2020 19:07:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21879,17 +35361,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "717ca02e-9d30-459d-9ce1-ea35690834a4"
+ "04853b90-c940-4f0e-a5f0-52b181da41e5"
],
"Accept-Language": [
"en-US"
@@ -21912,16 +35394,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11702"
+ "11488"
],
"x-ms-request-id": [
- "44f948d6-1359-4461-bbcb-6a779d32734b"
+ "38b87c06-76f6-4aba-8656-285b04ebfd50"
],
"x-ms-correlation-request-id": [
- "44f948d6-1359-4461-bbcb-6a779d32734b"
+ "38b87c06-76f6-4aba-8656-285b04ebfd50"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224314Z:44f948d6-1359-4461-bbcb-6a779d32734b"
+ "NORTHCENTRALUS:20200519T190717Z:38b87c06-76f6-4aba-8656-285b04ebfd50"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21930,7 +35412,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:13 GMT"
+ "Tue, 19 May 2020 19:07:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21942,17 +35424,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a942e84-4f34-4814-812a-42a7d422d54f"
+ "ef533336-54b2-4d01-80d1-5535ffe1f5e3"
],
"Accept-Language": [
"en-US"
@@ -21975,16 +35457,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11700"
+ "11486"
],
"x-ms-request-id": [
- "269a2f43-66fe-4aee-a044-8f39cf4b3426"
+ "a6b1d814-0c8e-4abc-88d5-024930aed5ec"
],
"x-ms-correlation-request-id": [
- "269a2f43-66fe-4aee-a044-8f39cf4b3426"
+ "a6b1d814-0c8e-4abc-88d5-024930aed5ec"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224314Z:269a2f43-66fe-4aee-a044-8f39cf4b3426"
+ "NORTHCENTRALUS:20200519T190718Z:a6b1d814-0c8e-4abc-88d5-024930aed5ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21993,7 +35475,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:14 GMT"
+ "Tue, 19 May 2020 19:07:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22005,17 +35487,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fbba1b53-7063-4d54-908a-099e81cc513b"
+ "50f184b4-4fcc-401b-be05-afec40c675d0"
],
"Accept-Language": [
"en-US"
@@ -22038,16 +35520,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11698"
+ "11484"
],
"x-ms-request-id": [
- "6d9af1a1-5270-45d6-a297-eddb09a6ad4e"
+ "c627a78d-32d2-4edf-ba63-b66af2bcaee8"
],
"x-ms-correlation-request-id": [
- "6d9af1a1-5270-45d6-a297-eddb09a6ad4e"
+ "c627a78d-32d2-4edf-ba63-b66af2bcaee8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224314Z:6d9af1a1-5270-45d6-a297-eddb09a6ad4e"
+ "NORTHCENTRALUS:20200519T190718Z:c627a78d-32d2-4edf-ba63-b66af2bcaee8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22056,7 +35538,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:14 GMT"
+ "Tue, 19 May 2020 19:07:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22068,17 +35550,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a68971c-31e2-4d2c-bb14-e0c4a11eb8f3"
+ "5f614c25-a9b4-4ff3-a941-51b4dcb63f28"
],
"Accept-Language": [
"en-US"
@@ -22101,16 +35583,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11696"
+ "11482"
],
"x-ms-request-id": [
- "bdde0f8a-2910-40b8-b76c-4270bf7b41e0"
+ "9203586d-b666-4204-ba5e-a60c17d39f90"
],
"x-ms-correlation-request-id": [
- "bdde0f8a-2910-40b8-b76c-4270bf7b41e0"
+ "9203586d-b666-4204-ba5e-a60c17d39f90"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224315Z:bdde0f8a-2910-40b8-b76c-4270bf7b41e0"
+ "NORTHCENTRALUS:20200519T190719Z:9203586d-b666-4204-ba5e-a60c17d39f90"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22119,7 +35601,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:14 GMT"
+ "Tue, 19 May 2020 19:07:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22131,17 +35613,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86e6a460-09d7-43d0-9132-8366d6d07bcd"
+ "eea3e377-e784-431a-b229-9df270e2faae"
],
"Accept-Language": [
"en-US"
@@ -22164,16 +35646,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11694"
+ "11480"
],
"x-ms-request-id": [
- "9944ed9d-8943-4ab4-bc78-cc0eea30f5fa"
+ "bb173089-d742-42af-8377-aa570dfd1ec9"
],
"x-ms-correlation-request-id": [
- "9944ed9d-8943-4ab4-bc78-cc0eea30f5fa"
+ "bb173089-d742-42af-8377-aa570dfd1ec9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224315Z:9944ed9d-8943-4ab4-bc78-cc0eea30f5fa"
+ "NORTHCENTRALUS:20200519T190719Z:bb173089-d742-42af-8377-aa570dfd1ec9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22182,7 +35664,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:15 GMT"
+ "Tue, 19 May 2020 19:07:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22194,17 +35676,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02854404-9232-49a0-bd32-473b71c1d415"
+ "84d3376f-a628-4876-8a48-75897a8e5465"
],
"Accept-Language": [
"en-US"
@@ -22227,16 +35709,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11692"
+ "11478"
],
"x-ms-request-id": [
- "deb6bda4-c50b-4e2c-a9cf-a596e4261255"
+ "3183be54-02b2-4d98-85b8-160dc5113cbe"
],
"x-ms-correlation-request-id": [
- "deb6bda4-c50b-4e2c-a9cf-a596e4261255"
+ "3183be54-02b2-4d98-85b8-160dc5113cbe"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224316Z:deb6bda4-c50b-4e2c-a9cf-a596e4261255"
+ "NORTHCENTRALUS:20200519T190720Z:3183be54-02b2-4d98-85b8-160dc5113cbe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22245,7 +35727,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:15 GMT"
+ "Tue, 19 May 2020 19:07:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22257,17 +35739,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ee5238f2-31a1-4b23-b07e-9ba841cdea16"
+ "b1ff5bd3-9869-4725-b930-6bf255cca3e0"
],
"Accept-Language": [
"en-US"
@@ -22290,16 +35772,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11690"
+ "11476"
],
"x-ms-request-id": [
- "9aafe986-b924-4c06-9dc6-95c11ef32cda"
+ "7bb73277-59a2-4c25-aedb-1992d9c5a86f"
],
"x-ms-correlation-request-id": [
- "9aafe986-b924-4c06-9dc6-95c11ef32cda"
+ "7bb73277-59a2-4c25-aedb-1992d9c5a86f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224316Z:9aafe986-b924-4c06-9dc6-95c11ef32cda"
+ "NORTHCENTRALUS:20200519T190720Z:7bb73277-59a2-4c25-aedb-1992d9c5a86f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22308,7 +35790,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:16 GMT"
+ "Tue, 19 May 2020 19:07:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22320,17 +35802,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72fce7f0-692a-404e-9f82-c5404ec7a521"
+ "cc92b410-cf3f-4f7e-908d-38bfcc9b607a"
],
"Accept-Language": [
"en-US"
@@ -22353,16 +35835,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11688"
+ "11474"
],
"x-ms-request-id": [
- "ecec27e7-5124-49c9-a851-0f9b44dc17af"
+ "3b53ff6b-5a6a-49f3-8917-2ece44858c5a"
],
"x-ms-correlation-request-id": [
- "ecec27e7-5124-49c9-a851-0f9b44dc17af"
+ "3b53ff6b-5a6a-49f3-8917-2ece44858c5a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224316Z:ecec27e7-5124-49c9-a851-0f9b44dc17af"
+ "NORTHCENTRALUS:20200519T190720Z:3b53ff6b-5a6a-49f3-8917-2ece44858c5a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22371,7 +35853,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:16 GMT"
+ "Tue, 19 May 2020 19:07:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22383,17 +35865,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd164d3a-1758-4ab8-b93d-81012866d852"
+ "1389b565-737d-4281-9295-e4c1d6a7b4d8"
],
"Accept-Language": [
"en-US"
@@ -22416,16 +35898,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11686"
+ "11472"
],
"x-ms-request-id": [
- "d0719216-f9af-4459-b1bc-141e05551ee6"
+ "8b962792-d0ce-4dd0-a676-27b1c779e5ea"
],
"x-ms-correlation-request-id": [
- "d0719216-f9af-4459-b1bc-141e05551ee6"
+ "8b962792-d0ce-4dd0-a676-27b1c779e5ea"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224317Z:d0719216-f9af-4459-b1bc-141e05551ee6"
+ "NORTHCENTRALUS:20200519T190721Z:8b962792-d0ce-4dd0-a676-27b1c779e5ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22434,7 +35916,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:16 GMT"
+ "Tue, 19 May 2020 19:07:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22446,17 +35928,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69e062f5-fce8-488c-8a4f-e938e20253dc"
+ "eb2f7625-4bcb-4f3d-9d44-7602455e0b5d"
],
"Accept-Language": [
"en-US"
@@ -22479,16 +35961,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11684"
+ "11470"
],
"x-ms-request-id": [
- "4c082d33-d8d5-422f-962b-153ce2738852"
+ "02d6096b-2753-4629-8e07-d50a82e0e237"
],
"x-ms-correlation-request-id": [
- "4c082d33-d8d5-422f-962b-153ce2738852"
+ "02d6096b-2753-4629-8e07-d50a82e0e237"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224317Z:4c082d33-d8d5-422f-962b-153ce2738852"
+ "NORTHCENTRALUS:20200519T190721Z:02d6096b-2753-4629-8e07-d50a82e0e237"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22497,7 +35979,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:17 GMT"
+ "Tue, 19 May 2020 19:07:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22509,17 +35991,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:07.5871458Z\",\r\n \"duration\": \"PT1M40.3142568S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "922939fe-d610-4ba3-ab28-9eb3328ebd31"
+ "6928708f-72cd-4677-ad2e-65fe4871ca87"
],
"Accept-Language": [
"en-US"
@@ -22542,16 +36024,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11682"
+ "11468"
],
"x-ms-request-id": [
- "d5274ccd-f6f3-4194-ab4a-036192aef429"
+ "05d0036e-889f-42c4-a0e1-10f4a6cc3930"
],
"x-ms-correlation-request-id": [
- "d5274ccd-f6f3-4194-ab4a-036192aef429"
+ "05d0036e-889f-42c4-a0e1-10f4a6cc3930"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224318Z:d5274ccd-f6f3-4194-ab4a-036192aef429"
+ "NORTHCENTRALUS:20200519T190722Z:05d0036e-889f-42c4-a0e1-10f4a6cc3930"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22560,7 +36042,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:17 GMT"
+ "Tue, 19 May 2020 19:07:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22572,17 +36054,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d713d04f-3bde-4f82-bc11-95fd43e2fec3"
+ "4bb637e6-0067-4a4f-b8bb-876f05a31b26"
],
"Accept-Language": [
"en-US"
@@ -22605,16 +36087,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11680"
+ "11466"
],
"x-ms-request-id": [
- "c750d552-a6c6-4fb0-9930-f7c4800df52d"
+ "22d57c6f-e2a8-4c9b-b17d-258fa0db8f8c"
],
"x-ms-correlation-request-id": [
- "c750d552-a6c6-4fb0-9930-f7c4800df52d"
+ "22d57c6f-e2a8-4c9b-b17d-258fa0db8f8c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224318Z:c750d552-a6c6-4fb0-9930-f7c4800df52d"
+ "NORTHCENTRALUS:20200519T190722Z:22d57c6f-e2a8-4c9b-b17d-258fa0db8f8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22623,7 +36105,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:18 GMT"
+ "Tue, 19 May 2020 19:07:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22635,17 +36117,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "209dce7a-78b7-4efe-8b6c-67f490150a46"
+ "7673bf16-53cf-46fc-afc1-1343176e9e09"
],
"Accept-Language": [
"en-US"
@@ -22668,16 +36150,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11678"
+ "11464"
],
"x-ms-request-id": [
- "a7133239-61fc-49b2-bdd6-5a5a1435c2bb"
+ "80f0f364-2376-4e11-bb4a-452790daa67c"
],
"x-ms-correlation-request-id": [
- "a7133239-61fc-49b2-bdd6-5a5a1435c2bb"
+ "80f0f364-2376-4e11-bb4a-452790daa67c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224318Z:a7133239-61fc-49b2-bdd6-5a5a1435c2bb"
+ "NORTHCENTRALUS:20200519T190723Z:80f0f364-2376-4e11-bb4a-452790daa67c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22686,7 +36168,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:18 GMT"
+ "Tue, 19 May 2020 19:07:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22698,17 +36180,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82eced02-d7be-4af3-955f-56e2e16dd186"
+ "1c3a4a1d-4523-4b15-a89d-8cd6afc1973a"
],
"Accept-Language": [
"en-US"
@@ -22731,16 +36213,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11676"
+ "11462"
],
"x-ms-request-id": [
- "22efbd4c-75cb-40c9-8467-232019fcb8c2"
+ "65dcc721-01d4-451d-be6b-c73f40a975da"
],
"x-ms-correlation-request-id": [
- "22efbd4c-75cb-40c9-8467-232019fcb8c2"
+ "65dcc721-01d4-451d-be6b-c73f40a975da"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224319Z:22efbd4c-75cb-40c9-8467-232019fcb8c2"
+ "NORTHCENTRALUS:20200519T190723Z:65dcc721-01d4-451d-be6b-c73f40a975da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22749,7 +36231,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:18 GMT"
+ "Tue, 19 May 2020 19:07:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22761,17 +36243,17 @@
"1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:08.3429542Z\",\r\n \"duration\": \"PT56.2746388S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c129a61-ae08-4fed-9bfd-6a3860ec7423"
+ "b37c56f7-838b-488f-9529-c921a6f25e51"
],
"Accept-Language": [
"en-US"
@@ -22794,16 +36276,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11674"
+ "11460"
],
"x-ms-request-id": [
- "e2ba15a4-9326-4eda-af37-7fc718d3fe11"
+ "5c75354d-9d2e-4748-b544-b98c7ecdca30"
],
"x-ms-correlation-request-id": [
- "e2ba15a4-9326-4eda-af37-7fc718d3fe11"
+ "5c75354d-9d2e-4748-b544-b98c7ecdca30"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224319Z:e2ba15a4-9326-4eda-af37-7fc718d3fe11"
+ "NORTHCENTRALUS:20200519T190723Z:5c75354d-9d2e-4748-b544-b98c7ecdca30"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22812,7 +36294,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:19 GMT"
+ "Tue, 19 May 2020 19:07:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22821,20 +36303,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eec1f7d-d7d1-4139-8cc7-1566df43bd8b"
+ "7411592e-f7d7-4d3e-b938-c23fcffdfdbe"
],
"Accept-Language": [
"en-US"
@@ -22857,16 +36339,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11672"
+ "11458"
],
"x-ms-request-id": [
- "0401661d-670b-40ab-b7d4-cacf8b7fa818"
+ "cf1acf7b-1b8e-49f2-9495-6aa2dbde6f45"
],
"x-ms-correlation-request-id": [
- "0401661d-670b-40ab-b7d4-cacf8b7fa818"
+ "cf1acf7b-1b8e-49f2-9495-6aa2dbde6f45"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224320Z:0401661d-670b-40ab-b7d4-cacf8b7fa818"
+ "NORTHCENTRALUS:20200519T190724Z:cf1acf7b-1b8e-49f2-9495-6aa2dbde6f45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22875,7 +36357,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:19 GMT"
+ "Tue, 19 May 2020 19:07:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22884,20 +36366,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d22c4bbc-d5d7-4e14-8ab5-ea5dd4f46a97"
+ "cd5bb112-97c9-4c2b-8728-7aa99bcd9542"
],
"Accept-Language": [
"en-US"
@@ -22920,16 +36402,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11670"
+ "11456"
],
"x-ms-request-id": [
- "3fd4ac35-d20d-4003-8b79-9ac4a1588d6c"
+ "75244f5b-64a0-49fd-83ed-cd52e7124dd1"
],
"x-ms-correlation-request-id": [
- "3fd4ac35-d20d-4003-8b79-9ac4a1588d6c"
+ "75244f5b-64a0-49fd-83ed-cd52e7124dd1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224320Z:3fd4ac35-d20d-4003-8b79-9ac4a1588d6c"
+ "NORTHCENTRALUS:20200519T190724Z:75244f5b-64a0-49fd-83ed-cd52e7124dd1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22938,7 +36420,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:20 GMT"
+ "Tue, 19 May 2020 19:07:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22947,20 +36429,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f712a5a-197e-4fef-973f-955b7d9387a4"
+ "30b9f0c6-48eb-4871-b075-67f214f85c20"
],
"Accept-Language": [
"en-US"
@@ -22983,16 +36465,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11668"
+ "11454"
],
"x-ms-request-id": [
- "76c12924-b0ba-48aa-8765-1a96f625d6fd"
+ "76a9d4aa-1b05-4312-a061-294ff310d705"
],
"x-ms-correlation-request-id": [
- "76c12924-b0ba-48aa-8765-1a96f625d6fd"
+ "76a9d4aa-1b05-4312-a061-294ff310d705"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224321Z:76c12924-b0ba-48aa-8765-1a96f625d6fd"
+ "NORTHCENTRALUS:20200519T190725Z:76a9d4aa-1b05-4312-a061-294ff310d705"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23001,7 +36483,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:20 GMT"
+ "Tue, 19 May 2020 19:07:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23010,20 +36492,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d43b98ca-86a2-494f-8aa9-5b0d9c57096c"
+ "20da1ae1-e00e-460d-9ea1-42f7358cae62"
],
"Accept-Language": [
"en-US"
@@ -23046,16 +36528,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11666"
+ "11452"
],
"x-ms-request-id": [
- "9266faa6-5cef-4e55-9b01-2bd71604b4a2"
+ "f1d4d8d9-0f90-4d9b-94b4-da6a7307c5fc"
],
"x-ms-correlation-request-id": [
- "9266faa6-5cef-4e55-9b01-2bd71604b4a2"
+ "f1d4d8d9-0f90-4d9b-94b4-da6a7307c5fc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224321Z:9266faa6-5cef-4e55-9b01-2bd71604b4a2"
+ "NORTHCENTRALUS:20200519T190725Z:f1d4d8d9-0f90-4d9b-94b4-da6a7307c5fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23064,7 +36546,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:20 GMT"
+ "Tue, 19 May 2020 19:07:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23073,20 +36555,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b6946fd-76dd-4341-a3ce-61855279afe4"
+ "25badf8e-277a-4375-821c-8346333b0294"
],
"Accept-Language": [
"en-US"
@@ -23109,16 +36591,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11664"
+ "11450"
],
"x-ms-request-id": [
- "e40dcf92-c17b-405a-b783-71e9d0f4bac2"
+ "888dd455-360c-4031-8537-d68660c9c5db"
],
"x-ms-correlation-request-id": [
- "e40dcf92-c17b-405a-b783-71e9d0f4bac2"
+ "888dd455-360c-4031-8537-d68660c9c5db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224321Z:e40dcf92-c17b-405a-b783-71e9d0f4bac2"
+ "NORTHCENTRALUS:20200519T190726Z:888dd455-360c-4031-8537-d68660c9c5db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23127,7 +36609,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:21 GMT"
+ "Tue, 19 May 2020 19:07:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23136,20 +36618,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "135cb3e0-ff5c-4691-8d49-c263414995d9"
+ "c7941c59-c73b-4cf2-b686-94dc1f359449"
],
"Accept-Language": [
"en-US"
@@ -23172,16 +36654,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11662"
+ "11448"
],
"x-ms-request-id": [
- "37a71b17-0242-4ff9-b8fd-160cff5f8bdf"
+ "cdd4440d-6836-4e21-8cb2-17a781356cf9"
],
"x-ms-correlation-request-id": [
- "37a71b17-0242-4ff9-b8fd-160cff5f8bdf"
+ "cdd4440d-6836-4e21-8cb2-17a781356cf9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224322Z:37a71b17-0242-4ff9-b8fd-160cff5f8bdf"
+ "NORTHCENTRALUS:20200519T190726Z:cdd4440d-6836-4e21-8cb2-17a781356cf9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23190,7 +36672,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:21 GMT"
+ "Tue, 19 May 2020 19:07:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23199,20 +36681,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1666425f-1790-431f-b08f-7dc14c159fd1"
+ "68dc41e5-1348-40be-9f7b-482c61185a5f"
],
"Accept-Language": [
"en-US"
@@ -23235,16 +36717,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11660"
+ "11446"
],
"x-ms-request-id": [
- "4ed5339b-7916-4392-ac27-76c4c39aad9b"
+ "24f13da0-9974-4430-bd76-333b1b1f4930"
],
"x-ms-correlation-request-id": [
- "4ed5339b-7916-4392-ac27-76c4c39aad9b"
+ "24f13da0-9974-4430-bd76-333b1b1f4930"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224322Z:4ed5339b-7916-4392-ac27-76c4c39aad9b"
+ "NORTHCENTRALUS:20200519T190727Z:24f13da0-9974-4430-bd76-333b1b1f4930"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23253,7 +36735,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:22 GMT"
+ "Tue, 19 May 2020 19:07:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23262,20 +36744,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd44fcf5-fb9b-4a1f-a1cd-1af6338ee1e9"
+ "6de73ee2-b545-4350-9bfd-77157048b667"
],
"Accept-Language": [
"en-US"
@@ -23298,16 +36780,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11658"
+ "11444"
],
"x-ms-request-id": [
- "107ef439-d109-4e47-b4c5-3a7db717da67"
+ "c910c8bf-d0f1-4abc-867e-4f009cce2786"
],
"x-ms-correlation-request-id": [
- "107ef439-d109-4e47-b4c5-3a7db717da67"
+ "c910c8bf-d0f1-4abc-867e-4f009cce2786"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224323Z:107ef439-d109-4e47-b4c5-3a7db717da67"
+ "NORTHCENTRALUS:20200519T190727Z:c910c8bf-d0f1-4abc-867e-4f009cce2786"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23316,7 +36798,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:22 GMT"
+ "Tue, 19 May 2020 19:07:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23325,20 +36807,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3118c44b-03a1-4be9-9c66-3446f9c14e17"
+ "0493dcbf-d5d6-475a-82dd-9fc71080d48d"
],
"Accept-Language": [
"en-US"
@@ -23361,16 +36843,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11656"
+ "11442"
],
"x-ms-request-id": [
- "45ae6f00-c60f-465e-80ef-b62b9925670c"
+ "022f8003-8b19-45cc-9ff7-ca4ffdb5f600"
],
"x-ms-correlation-request-id": [
- "45ae6f00-c60f-465e-80ef-b62b9925670c"
+ "022f8003-8b19-45cc-9ff7-ca4ffdb5f600"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224323Z:45ae6f00-c60f-465e-80ef-b62b9925670c"
+ "NORTHCENTRALUS:20200519T190728Z:022f8003-8b19-45cc-9ff7-ca4ffdb5f600"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23379,7 +36861,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:22 GMT"
+ "Tue, 19 May 2020 19:07:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23388,20 +36870,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "177498a2-2383-4551-a884-11c740a153e5"
+ "5a2b4d18-a018-48ab-a4cc-e30da13722c5"
],
"Accept-Language": [
"en-US"
@@ -23424,16 +36906,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11654"
+ "11440"
],
"x-ms-request-id": [
- "2f6d9b4c-5668-4c17-a5c6-85945cfe76dd"
+ "359d8d59-ac5b-42a0-97f5-4a1f4a20ec7c"
],
"x-ms-correlation-request-id": [
- "2f6d9b4c-5668-4c17-a5c6-85945cfe76dd"
+ "359d8d59-ac5b-42a0-97f5-4a1f4a20ec7c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224323Z:2f6d9b4c-5668-4c17-a5c6-85945cfe76dd"
+ "NORTHCENTRALUS:20200519T190728Z:359d8d59-ac5b-42a0-97f5-4a1f4a20ec7c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23442,7 +36924,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:23 GMT"
+ "Tue, 19 May 2020 19:07:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23451,20 +36933,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c81760cb-0ebf-44c3-9bd9-84d4162c1a97"
+ "d2d2518c-abe7-43e6-876d-ae99c0d7d258"
],
"Accept-Language": [
"en-US"
@@ -23487,16 +36969,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11652"
+ "11438"
],
"x-ms-request-id": [
- "fbe76ba5-309f-497a-b144-9dd008e0aeb3"
+ "691d74f8-089d-4df4-95c1-a8de23d01bfb"
],
"x-ms-correlation-request-id": [
- "fbe76ba5-309f-497a-b144-9dd008e0aeb3"
+ "691d74f8-089d-4df4-95c1-a8de23d01bfb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224324Z:fbe76ba5-309f-497a-b144-9dd008e0aeb3"
+ "NORTHCENTRALUS:20200519T190729Z:691d74f8-089d-4df4-95c1-a8de23d01bfb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23505,7 +36987,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:23 GMT"
+ "Tue, 19 May 2020 19:07:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23514,20 +36996,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34fd8dc4-55f9-4d7d-a970-4ab54c6f7dcb"
+ "20f44f48-74ff-41c2-b9a1-70a186b5bea5"
],
"Accept-Language": [
"en-US"
@@ -23550,16 +37032,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11650"
+ "11436"
],
"x-ms-request-id": [
- "f8d5fafb-60f5-40ff-b494-a3da71893650"
+ "6c0555a3-aba3-4235-9a13-ea555949762c"
],
"x-ms-correlation-request-id": [
- "f8d5fafb-60f5-40ff-b494-a3da71893650"
+ "6c0555a3-aba3-4235-9a13-ea555949762c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224324Z:f8d5fafb-60f5-40ff-b494-a3da71893650"
+ "NORTHCENTRALUS:20200519T190729Z:6c0555a3-aba3-4235-9a13-ea555949762c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23568,7 +37050,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:24 GMT"
+ "Tue, 19 May 2020 19:07:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23577,20 +37059,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a519715e-e0de-4ba1-9c1b-06db5d994fdd"
+ "863f2130-a9a0-4440-9d5e-477268499056"
],
"Accept-Language": [
"en-US"
@@ -23613,16 +37095,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11648"
+ "11434"
],
"x-ms-request-id": [
- "bd00041e-bbdb-4cf9-84b1-5a3eca7f84e6"
+ "da3afe0b-6b18-4c2e-a14e-d655a06e417c"
],
"x-ms-correlation-request-id": [
- "bd00041e-bbdb-4cf9-84b1-5a3eca7f84e6"
+ "da3afe0b-6b18-4c2e-a14e-d655a06e417c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224325Z:bd00041e-bbdb-4cf9-84b1-5a3eca7f84e6"
+ "NORTHCENTRALUS:20200519T190729Z:da3afe0b-6b18-4c2e-a14e-d655a06e417c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23631,7 +37113,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:24 GMT"
+ "Tue, 19 May 2020 19:07:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23640,20 +37122,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93faac45-9489-4721-9fce-d407ad1b2963"
+ "51764d29-33dd-485a-96b1-7132e5ca58ce"
],
"Accept-Language": [
"en-US"
@@ -23676,16 +37158,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11646"
+ "11432"
],
"x-ms-request-id": [
- "ad92bdc4-d072-421c-b0a1-d315dfae37d4"
+ "2fa27c38-8662-4f6b-9bac-670e1cc0ffaa"
],
"x-ms-correlation-request-id": [
- "ad92bdc4-d072-421c-b0a1-d315dfae37d4"
+ "2fa27c38-8662-4f6b-9bac-670e1cc0ffaa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224325Z:ad92bdc4-d072-421c-b0a1-d315dfae37d4"
+ "NORTHCENTRALUS:20200519T190730Z:2fa27c38-8662-4f6b-9bac-670e1cc0ffaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23694,7 +37176,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:24 GMT"
+ "Tue, 19 May 2020 19:07:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23703,20 +37185,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3617def9-1826-4bb2-97e4-3e9309db6ce2"
+ "9c70ad32-d706-42c4-baa6-f8153ce386f3"
],
"Accept-Language": [
"en-US"
@@ -23739,16 +37221,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11644"
+ "11430"
],
"x-ms-request-id": [
- "2ae1511f-7ac9-4a5d-810a-b80a7952ce97"
+ "3e614caa-ead8-4a12-a19e-49369147447f"
],
"x-ms-correlation-request-id": [
- "2ae1511f-7ac9-4a5d-810a-b80a7952ce97"
+ "3e614caa-ead8-4a12-a19e-49369147447f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224326Z:2ae1511f-7ac9-4a5d-810a-b80a7952ce97"
+ "NORTHCENTRALUS:20200519T190730Z:3e614caa-ead8-4a12-a19e-49369147447f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23757,7 +37239,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:25 GMT"
+ "Tue, 19 May 2020 19:07:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23766,20 +37248,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98325533-21b2-4e0f-b5f5-63292ebb5beb"
+ "98f2127a-e4d1-4813-aeb8-5a3edc4daf91"
],
"Accept-Language": [
"en-US"
@@ -23802,16 +37284,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11642"
+ "11428"
],
"x-ms-request-id": [
- "8f985e83-8f2a-4abf-a93b-ec2ff3209745"
+ "8a27a615-09e8-429d-9aba-7b2168e8c5ab"
],
"x-ms-correlation-request-id": [
- "8f985e83-8f2a-4abf-a93b-ec2ff3209745"
+ "8a27a615-09e8-429d-9aba-7b2168e8c5ab"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224326Z:8f985e83-8f2a-4abf-a93b-ec2ff3209745"
+ "NORTHCENTRALUS:20200519T190731Z:8a27a615-09e8-429d-9aba-7b2168e8c5ab"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23820,7 +37302,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:25 GMT"
+ "Tue, 19 May 2020 19:07:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23829,20 +37311,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bba78a57-1a14-45a9-b7dc-1aae41adc8b4"
+ "143f40d4-2b36-478f-87e6-2971410e889d"
],
"Accept-Language": [
"en-US"
@@ -23865,16 +37347,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11640"
+ "11426"
],
"x-ms-request-id": [
- "9ec31d51-64c5-4fdf-85a7-535b393047aa"
+ "b80c81c2-f85f-4f27-8fa1-d453182d4ea7"
],
"x-ms-correlation-request-id": [
- "9ec31d51-64c5-4fdf-85a7-535b393047aa"
+ "b80c81c2-f85f-4f27-8fa1-d453182d4ea7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224326Z:9ec31d51-64c5-4fdf-85a7-535b393047aa"
+ "NORTHCENTRALUS:20200519T190731Z:b80c81c2-f85f-4f27-8fa1-d453182d4ea7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23883,7 +37365,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:26 GMT"
+ "Tue, 19 May 2020 19:07:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23892,20 +37374,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2278a16-12c4-400b-8e8f-463dbd2f8f59"
+ "f83a481d-4ab9-45b9-874f-6c3831cde0dd"
],
"Accept-Language": [
"en-US"
@@ -23928,16 +37410,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11638"
+ "11424"
],
"x-ms-request-id": [
- "b0978fd2-1384-4de6-a0eb-e97120f32966"
+ "51010032-477d-455f-8880-ce88cde3755a"
],
"x-ms-correlation-request-id": [
- "b0978fd2-1384-4de6-a0eb-e97120f32966"
+ "51010032-477d-455f-8880-ce88cde3755a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224327Z:b0978fd2-1384-4de6-a0eb-e97120f32966"
+ "NORTHCENTRALUS:20200519T190732Z:51010032-477d-455f-8880-ce88cde3755a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23946,7 +37428,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:26 GMT"
+ "Tue, 19 May 2020 19:07:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23955,20 +37437,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "356be891-a102-4e89-bf2b-61f8dcca9657"
+ "55f67196-4524-4e9e-b729-6c81706f177e"
],
"Accept-Language": [
"en-US"
@@ -23991,16 +37473,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11636"
+ "11422"
],
"x-ms-request-id": [
- "f24fd476-b54d-4580-b30f-9c6368c6e554"
+ "f18878a3-de12-484c-b373-c24d686eafd2"
],
"x-ms-correlation-request-id": [
- "f24fd476-b54d-4580-b30f-9c6368c6e554"
+ "f18878a3-de12-484c-b373-c24d686eafd2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224327Z:f24fd476-b54d-4580-b30f-9c6368c6e554"
+ "NORTHCENTRALUS:20200519T190732Z:f18878a3-de12-484c-b373-c24d686eafd2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24009,7 +37491,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:26 GMT"
+ "Tue, 19 May 2020 19:07:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24018,20 +37500,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "782202cd-7409-47d0-966e-e5d0771fd8f9"
+ "7e578229-42b6-4923-bfcb-270daa4aafa1"
],
"Accept-Language": [
"en-US"
@@ -24054,16 +37536,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11634"
+ "11420"
],
"x-ms-request-id": [
- "75900250-ed82-4b31-bb01-0bd7dc37e2fc"
+ "f4de2c7d-cd6d-4530-a7e6-9cf5e1d1fd5f"
],
"x-ms-correlation-request-id": [
- "75900250-ed82-4b31-bb01-0bd7dc37e2fc"
+ "f4de2c7d-cd6d-4530-a7e6-9cf5e1d1fd5f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224328Z:75900250-ed82-4b31-bb01-0bd7dc37e2fc"
+ "NORTHCENTRALUS:20200519T190732Z:f4de2c7d-cd6d-4530-a7e6-9cf5e1d1fd5f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24072,7 +37554,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:27 GMT"
+ "Tue, 19 May 2020 19:07:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24081,20 +37563,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ebae053-f48e-44a7-a034-c908e35018cd"
+ "3f36a6c0-b38b-45aa-a320-32153080a81c"
],
"Accept-Language": [
"en-US"
@@ -24117,16 +37599,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11632"
+ "11418"
],
"x-ms-request-id": [
- "2df85dd0-0b78-41cb-9957-d0f38f71a28e"
+ "ce49d4c2-25d5-4be1-ac2e-d75d33d8dc87"
],
"x-ms-correlation-request-id": [
- "2df85dd0-0b78-41cb-9957-d0f38f71a28e"
+ "ce49d4c2-25d5-4be1-ac2e-d75d33d8dc87"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224328Z:2df85dd0-0b78-41cb-9957-d0f38f71a28e"
+ "NORTHCENTRALUS:20200519T190733Z:ce49d4c2-25d5-4be1-ac2e-d75d33d8dc87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24135,7 +37617,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:27 GMT"
+ "Tue, 19 May 2020 19:07:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24144,20 +37626,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "651f17bd-debc-4dc0-9d39-393c6c16b80e"
+ "ebd7f66f-72d7-4d21-b1b5-288fecbb30ba"
],
"Accept-Language": [
"en-US"
@@ -24180,16 +37662,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11630"
+ "11416"
],
"x-ms-request-id": [
- "bca44e8a-f925-45b7-a231-cdb5ed2b856e"
+ "6660e71f-2631-400f-8eea-f15f01b12acb"
],
"x-ms-correlation-request-id": [
- "bca44e8a-f925-45b7-a231-cdb5ed2b856e"
+ "6660e71f-2631-400f-8eea-f15f01b12acb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224328Z:bca44e8a-f925-45b7-a231-cdb5ed2b856e"
+ "NORTHCENTRALUS:20200519T190733Z:6660e71f-2631-400f-8eea-f15f01b12acb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24198,7 +37680,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:28 GMT"
+ "Tue, 19 May 2020 19:07:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24207,20 +37689,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eae1fa5d-5737-4dce-8d54-66fce0a48191"
+ "dca99cd5-b73c-48a8-914a-3dce1aab00a3"
],
"Accept-Language": [
"en-US"
@@ -24243,16 +37725,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11628"
+ "11414"
],
"x-ms-request-id": [
- "65ddb705-31a2-437d-8fd7-cde6626e2204"
+ "96917830-6d80-42ab-a2a7-06bbde37f7df"
],
"x-ms-correlation-request-id": [
- "65ddb705-31a2-437d-8fd7-cde6626e2204"
+ "96917830-6d80-42ab-a2a7-06bbde37f7df"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224329Z:65ddb705-31a2-437d-8fd7-cde6626e2204"
+ "NORTHCENTRALUS:20200519T190734Z:96917830-6d80-42ab-a2a7-06bbde37f7df"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24261,7 +37743,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:28 GMT"
+ "Tue, 19 May 2020 19:07:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24270,20 +37752,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e0398981-b03b-4428-b868-1007dbabc1de"
+ "d8251172-4a18-4fe3-8243-8498ec28205c"
],
"Accept-Language": [
"en-US"
@@ -24306,16 +37788,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11626"
+ "11412"
],
"x-ms-request-id": [
- "43696c1e-04b6-41ed-8656-d645a3ef3f38"
+ "87530c41-b9d4-4ff9-8a00-460e036a17de"
],
"x-ms-correlation-request-id": [
- "43696c1e-04b6-41ed-8656-d645a3ef3f38"
+ "87530c41-b9d4-4ff9-8a00-460e036a17de"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224329Z:43696c1e-04b6-41ed-8656-d645a3ef3f38"
+ "NORTHCENTRALUS:20200519T190734Z:87530c41-b9d4-4ff9-8a00-460e036a17de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24324,7 +37806,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:28 GMT"
+ "Tue, 19 May 2020 19:07:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24333,20 +37815,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fb7f83e-d83b-4ccf-b049-438cac5aec16"
+ "7b724118-eabd-4448-b19e-56555b8724b7"
],
"Accept-Language": [
"en-US"
@@ -24369,16 +37851,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11624"
+ "11410"
],
"x-ms-request-id": [
- "46123dfd-6796-4d39-8977-70377ac7b3b7"
+ "aa0057b1-b78d-4f1b-b56a-65669a72974b"
],
"x-ms-correlation-request-id": [
- "46123dfd-6796-4d39-8977-70377ac7b3b7"
+ "aa0057b1-b78d-4f1b-b56a-65669a72974b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224330Z:46123dfd-6796-4d39-8977-70377ac7b3b7"
+ "NORTHCENTRALUS:20200519T190735Z:aa0057b1-b78d-4f1b-b56a-65669a72974b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24387,7 +37869,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:29 GMT"
+ "Tue, 19 May 2020 19:07:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24396,20 +37878,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eaa73b7b-e194-4586-965d-3f6944ded403"
+ "5e744eb4-d12f-4d67-87c6-5e470ba0efd2"
],
"Accept-Language": [
"en-US"
@@ -24432,16 +37914,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11622"
+ "11408"
],
"x-ms-request-id": [
- "82d94683-dd89-4e74-be57-f2c99b7c9a08"
+ "f8abab90-01de-403d-81b2-71db089bd8cf"
],
"x-ms-correlation-request-id": [
- "82d94683-dd89-4e74-be57-f2c99b7c9a08"
+ "f8abab90-01de-403d-81b2-71db089bd8cf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224330Z:82d94683-dd89-4e74-be57-f2c99b7c9a08"
+ "NORTHCENTRALUS:20200519T190735Z:f8abab90-01de-403d-81b2-71db089bd8cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24450,7 +37932,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:29 GMT"
+ "Tue, 19 May 2020 19:07:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24459,20 +37941,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "894fc4c2-c1b2-4922-bd81-29aa1654375a"
+ "389c4467-bdf0-4295-8b45-a0e38d4a961b"
],
"Accept-Language": [
"en-US"
@@ -24495,16 +37977,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11620"
+ "11406"
],
"x-ms-request-id": [
- "2aa5ab68-257e-4992-8bd6-e90c13896c19"
+ "29153c70-8a6b-46eb-a965-975a271895d5"
],
"x-ms-correlation-request-id": [
- "2aa5ab68-257e-4992-8bd6-e90c13896c19"
+ "29153c70-8a6b-46eb-a965-975a271895d5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224330Z:2aa5ab68-257e-4992-8bd6-e90c13896c19"
+ "NORTHCENTRALUS:20200519T190736Z:29153c70-8a6b-46eb-a965-975a271895d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24513,7 +37995,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:30 GMT"
+ "Tue, 19 May 2020 19:07:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24522,20 +38004,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4359c538-e550-4739-b1c2-85e12b712441"
+ "a6ca3315-e0c3-4ce5-9b13-47f11fb2790c"
],
"Accept-Language": [
"en-US"
@@ -24558,16 +38040,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11618"
+ "11404"
],
"x-ms-request-id": [
- "c0a628c2-ffb7-4a9d-9d3e-6eee0a9190e4"
+ "0697ff18-1701-4697-97e6-c6c94ac1f65f"
],
"x-ms-correlation-request-id": [
- "c0a628c2-ffb7-4a9d-9d3e-6eee0a9190e4"
+ "0697ff18-1701-4697-97e6-c6c94ac1f65f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224331Z:c0a628c2-ffb7-4a9d-9d3e-6eee0a9190e4"
+ "NORTHCENTRALUS:20200519T190736Z:0697ff18-1701-4697-97e6-c6c94ac1f65f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24576,7 +38058,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:30 GMT"
+ "Tue, 19 May 2020 19:07:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24585,20 +38067,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "364052b2-5282-485a-a458-0c92226da0d5"
+ "bfcc3782-daa8-491f-913e-40939a649c17"
],
"Accept-Language": [
"en-US"
@@ -24621,16 +38103,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11616"
+ "11402"
],
"x-ms-request-id": [
- "14f125a1-c6bb-477b-bbef-004cb9d72305"
+ "b0dfaf05-c8ff-4283-bbad-b60cdb21f557"
],
"x-ms-correlation-request-id": [
- "14f125a1-c6bb-477b-bbef-004cb9d72305"
+ "b0dfaf05-c8ff-4283-bbad-b60cdb21f557"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224331Z:14f125a1-c6bb-477b-bbef-004cb9d72305"
+ "NORTHCENTRALUS:20200519T190736Z:b0dfaf05-c8ff-4283-bbad-b60cdb21f557"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24639,7 +38121,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:30 GMT"
+ "Tue, 19 May 2020 19:07:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24648,20 +38130,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "559053dc-33eb-4444-9a90-c43afe532de2"
+ "af3d6eda-1df6-45bd-856b-5517aeb33ae5"
],
"Accept-Language": [
"en-US"
@@ -24684,16 +38166,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11614"
+ "11400"
],
"x-ms-request-id": [
- "864a7f73-b8c3-45b6-b7b4-f7ae2f018e46"
+ "4745191f-60a4-421e-9676-c0cbfb1b78cb"
],
"x-ms-correlation-request-id": [
- "864a7f73-b8c3-45b6-b7b4-f7ae2f018e46"
+ "4745191f-60a4-421e-9676-c0cbfb1b78cb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224332Z:864a7f73-b8c3-45b6-b7b4-f7ae2f018e46"
+ "NORTHCENTRALUS:20200519T190737Z:4745191f-60a4-421e-9676-c0cbfb1b78cb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24702,7 +38184,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:31 GMT"
+ "Tue, 19 May 2020 19:07:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24711,20 +38193,20 @@
"-1"
],
"Content-Length": [
- "1326"
+ "1325"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:43:19.5866383Z\",\r\n \"duration\": \"PT1M7.5183229S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-19T19:07:21.9843614Z\",\r\n \"duration\": \"PT1M54.7114724S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deployments/ps9886?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczk4ODY/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deployments/ps710?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa15a0a8-89d2-4342-b443-9b88b4157c5b"
+ "c47a0bec-c38b-4004-a83e-c405972876b8"
],
"Accept-Language": [
"en-US"
@@ -24744,16 +38226,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11612"
+ "11398"
],
"x-ms-request-id": [
- "141e8bfc-d953-44f3-83e2-cc64052573f1"
+ "819cf948-e66e-4025-bb8d-02519a5c49e3"
],
"x-ms-correlation-request-id": [
- "141e8bfc-d953-44f3-83e2-cc64052573f1"
+ "819cf948-e66e-4025-bb8d-02519a5c49e3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224332Z:141e8bfc-d953-44f3-83e2-cc64052573f1"
+ "NORTHCENTRALUS:20200519T190737Z:819cf948-e66e-4025-bb8d-02519a5c49e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24762,7 +38244,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:31 GMT"
+ "Tue, 19 May 2020 19:07:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24771,23 +38253,23 @@
"-1"
],
"Content-Length": [
- "19270"
+ "19704"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deployments/ps9886\",\r\n \"name\": \"ps9886\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:43:32.3836011Z\",\r\n \"duration\": \"PT1M20.3152857S\",\r\n \"correlationId\": \"25809e0f-786c-48ae-987d-5de78d853722\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"result\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n {\r\n \"ResourceGroupName\": \"new-testrg\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"NetworkWatcherRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"nsgrg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"OuldKVRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Rg1-Test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"RG_test123\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"scriptdemo\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"storageRG_Test\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-dine-shenglol\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"testresourcegroup_bp3\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"VNetBP-RG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Ds-TestRg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg769\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg4942\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg2541\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg3119\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg7839\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjwDeleteMe\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjw-debug-sacreate\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-bp-rg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"SDK-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-01\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-03\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps_test_subscription_deployment\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-003\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz---test--004-rg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4210\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6235\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6561\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7920\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps514\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6838\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps193\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2551\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1923\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-this\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps757\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps5799\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9965\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps377\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6136\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps886\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6785\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7721\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9011\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-002\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2482\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9089\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2010\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4581\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9344\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3436\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9832\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6758\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1594\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7915\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-001\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1569\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps870\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6868\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3816\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps845\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3932\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4600\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2414\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1534\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3065\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9031\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2079\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079\",\r\n \"ManagedBy\": null\r\n }\r\n ]\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deployments/ps710\",\r\n \"name\": \"ps710\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-19T19:07:37.6827797Z\",\r\n \"duration\": \"PT2M10.4098907S\",\r\n \"correlationId\": \"c8aa5e12-8740-45d5-8f8d-15994a15aaac\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"result\": {\r\n \"type\": \"Array\",\r\n \"value\": [\r\n {\r\n \"ResourceGroupName\": \"new-testrg\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"NetworkWatcherRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"nsgrg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"OuldKVRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Rg1-Test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"RG_test123\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"scriptdemo\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"storageRG_Test\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-dine-shenglol\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"testresourcegroup_bp3\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"VNetBP-RG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Ds-TestRg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg769\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg4942\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg2541\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg3119\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg7839\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjwDeleteMe\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjw-debug-sacreate\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-bp-rg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"SDK-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-01\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-03\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps_test_subscription_deployment\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-003\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz---test--004-rg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps8973\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7370\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4210\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6235\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6561\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7920\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps514\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6838\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps193\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2551\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1923\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-this\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps757\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps5799\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9965\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps377\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6136\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps886\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6785\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7721\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9011\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-002\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2482\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9089\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2010\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4581\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9344\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3436\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9832\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6758\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1594\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7915\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-001\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1569\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps870\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6868\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3816\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps845\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3932\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4600\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2414\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1534\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3065\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9031\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658\",\r\n \"ManagedBy\": null\r\n }\r\n ]\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default?api-version=2019-10-01-preview&tail=0",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default?api-version=2019-10-01-preview&tail=0",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b489455d-bef1-424b-b345-8db06b0bf58b"
+ "0a91195f-6b80-4d0f-b46d-93fd82e4f082"
],
"Accept-Language": [
"en-US"
@@ -24807,7 +38289,7 @@
"no-cache"
],
"x-ms-request-id": [
- "b9a151d6-7082-48c9-8e98-a2ac30615b86"
+ "6c32744c-0057-4020-8428-70442af98f2e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -24816,10 +38298,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "351912c9-cba0-41c3-a6f5-5cb373bd7f2e"
+ "16029291-c411-4d1d-9886-af3406cf0a1a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224333Z:351912c9-cba0-41c3-a6f5-5cb373bd7f2e"
+ "NORTHCENTRALUS:20200519T190738Z:16029291-c411-4d1d-9886-af3406cf0a1a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24828,10 +38310,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:32 GMT"
+ "Tue, 19 May 2020 19:07:38 GMT"
],
"Content-Length": [
- "8772"
+ "19175"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24843,17 +38325,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"tions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6136\\n\\nResourceGroupName : ps886\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps886\\n\\nResourceGroupName : ps6785\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6785\\n\\nResourceGroupName : ps7721\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7721\\n\\nResourceGroupName : ps9011\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9011\\n\\nResourceGroupName : filiz-test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test\\n\\nResourceGroupName : filiz-test-002\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-002\\n\\nResourceGroupName : 919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\n\\nResourceGroupName : 8663c347-6f8d-40ba-8efa-751f4c7a6616\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\n\\nResourceGroupName : 0924917e-8d29-4d74-924e-3445a1087486\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/0924917e-8d29-4d74-924e-3445a1087486\\n\\nResourceGroupName : a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\n\\nResourceGroupName : 3ecff93b-4ffc-4d40-9e66-b723893aca89\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\n\\nResourceGroupName : ps2482\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2482\\n\\nResourceGroupName : ps9089\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9089\\n\\nResourceGroupName : ps2010\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2010\\n\\nResourceGroupName : ps4581\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4581\\n\\nResourceGroupName : ps9344\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9344\\n\\nResourceGroupName : ps3436\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3436\\n\\nResourceGroupName : ps9832\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9832\\n\\nResourceGroupName : ps6758\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6758\\n\\nResourceGroupName : ps1594\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1594\\n\\nResourceGroupName : ps9658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9658\\n\\nResourceGroupName : ps7915\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7915\\n\\nResourceGroupName : filiz-test-001\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-001\\n\\nResourceGroupName : ps1569\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1569\\n\\nResourceGroupName : ps870\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps870\\n\\nResourceGroupName : ps6868\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6868\\n\\nResourceGroupName : ps3816\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3816\\n\\nResourceGroupName : ps845\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps845\\n\\nResourceGroupName : ps3932\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3932\\n\\nResourceGroupName : ps4600\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4600\\n\\nResourceGroupName : ps2414\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2414\\n\\nResourceGroupName : ps1534\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1534\\n\\nResourceGroupName : ps3065\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3065\\n\\nResourceGroupName : ps9031\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9031\\n\\nResourceGroupName : ps2079\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2079\\n\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Executing script: .\\\\userscript.ps1 \\n\\nResourceGroupName : new-testrg\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/new-testrg\\n\\nResourceGroupName : NetworkWatcherRG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/NetworkWatcherRG\\n\\nResourceGroupName : nsgrg\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/nsgrg\\n\\nResourceGroupName : OuldKVRG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/OuldKVRG\\n\\nResourceGroupName : Rg1-Test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/Rg1-Test\\n\\nResourceGroupName : RG_test123\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/RG_test123\\n\\nResourceGroupName : scriptdemo\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/scriptdemo\\n\\nResourceGroupName : storageRG_Test\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/storageRG_Test\\n\\nResourceGroupName : test-dine-shenglol\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/test-dine-shenglol\\n\\nResourceGroupName : testresourcegroup_bp3\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/testresourcegroup_bp3\\n\\nResourceGroupName : VNetBP-RG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/VNetBP-RG\\n\\nResourceGroupName : Ds-TestRg\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/Ds-TestRg\\n\\nResourceGroupName : csmrg769\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg769\\n\\nResourceGroupName : csmrg4942\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg4942\\n\\nResourceGroupName : csmrg2541\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg2541\\n\\nResourceGroupName : csmrg3119\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg3119\\n\\nResourceGroupName : csmrg7839\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg7839\\n\\nResourceGroupName : rjwDeleteMe\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/rjwDeleteMe\\n\\nResourceGroupName : rjw-debug-sacreate\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/rjw-debug-sacreate\\n\\nResourceGroupName : filiz-bp-rg\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-bp-rg\\n\\nResourceGroupName : SDK-test-02\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/SDK-test-02\\n\\nResourceGroupName : shenglol-ps-test-01\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-01\\n\\nResourceGroupName : shenglol-ps-test-02\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-02\\n\\nResourceGroupName : shenglol-ps-test-03\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-03\\n\\nResourceGroupName : ps_test_subscription_deployment\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps_test_subscription_deployment\\n\\nResourceGroupName : filiz-test-003\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-003\\n\\nResourceGroupName : filiz---test--004-rg\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz---test--004-rg\\n\\nResourceGroupName : ps8973\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps8973\\n\\nResourceGroupName : ps7370\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7370\\n\\nResourceGroupName : ps4210\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4210\\n\\nResourceGroupName : ps6235\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6235\\n\\nResourceGroupName : ps6561\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6561\\n\\nResourceGroupName : ps7920\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7920\\n\\nResourceGroupName : ps514\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps514\\n\\nResourceGroupName : ps6838\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6838\\n\\nResourceGroupName : ps193\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps193\\n\\nResourceGroupName : ps2551\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2551\\n\\nResourceGroupName : ps1923\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1923\\n\\nResourceGroupName : test-this\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/test-this\\n\\nResourceGroupName : ps757\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps757\\n\\nResourceGroupName : ps5799\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps5799\\n\\nResourceGroupName : ps9965\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9965\\n\\nResourceGroupName : ps377\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps377\\n\\nResourceGroupName : ps6136\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6136\\n\\nResourceGroupName : ps886\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps886\\n\\nResourceGroupName : ps6785\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6785\\n\\nResourceGroupName : ps7721\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7721\\n\\nResourceGroupName : ps9011\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9011\\n\\nResourceGroupName : filiz-test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test\\n\\nResourceGroupName : filiz-test-002\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-002\\n\\nResourceGroupName : 919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\n\\nResourceGroupName : 8663c347-6f8d-40ba-8efa-751f4c7a6616\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\n\\nResourceGroupName : 0924917e-8d29-4d74-924e-3445a1087486\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/0924917e-8d29-4d74-924e-3445a1087486\\n\\nResourceGroupName : a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\n\\nResourceGroupName : 3ecff93b-4ffc-4d40-9e66-b723893aca89\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\n\\nResourceGroupName : ps2482\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2482\\n\\nResourceGroupName : ps9089\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9089\\n\\nResourceGroupName : ps2010\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2010\\n\\nResourceGroupName : ps4581\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4581\\n\\nResourceGroupName : ps9344\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9344\\n\\nResourceGroupName : ps3436\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3436\\n\\nResourceGroupName : ps9832\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9832\\n\\nResourceGroupName : ps6758\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6758\\n\\nResourceGroupName : ps1594\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1594\\n\\nResourceGroupName : ps9658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9658\\n\\nResourceGroupName : ps7915\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7915\\n\\nResourceGroupName : filiz-test-001\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-001\\n\\nResourceGroupName : ps1569\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1569\\n\\nResourceGroupName : ps870\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps870\\n\\nResourceGroupName : ps6868\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6868\\n\\nResourceGroupName : ps3816\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3816\\n\\nResourceGroupName : ps845\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps845\\n\\nResourceGroupName : ps3932\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3932\\n\\nResourceGroupName : ps4600\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4600\\n\\nResourceGroupName : ps2414\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2414\\n\\nResourceGroupName : ps1534\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1534\\n\\nResourceGroupName : ps3065\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3065\\n\\nResourceGroupName : ps9031\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9031\\n\\nResourceGroupName : ps2658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2658\\n\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default?api-version=2019-10-01-preview&tail=0",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default?api-version=2019-10-01-preview&tail=0",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84b43ea7-cf28-4af0-aa9e-23294bf1b6cc"
+ "65e3a51d-8696-4220-9224-91c0770d24ba"
],
"Accept-Language": [
"en-US"
@@ -24873,7 +38355,7 @@
"no-cache"
],
"x-ms-request-id": [
- "93a55efb-6053-4d9c-b640-36a52008687e"
+ "997c4e75-fa39-4a04-9825-a28ac6183bc4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -24882,10 +38364,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "db645dc9-d28d-43e0-9ed7-bf10fd0f80f3"
+ "5945ebe4-89df-4105-bafa-ffba2bde101e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224334Z:db645dc9-d28d-43e0-9ed7-bf10fd0f80f3"
+ "NORTHCENTRALUS:20200519T190739Z:5945ebe4-89df-4105-bafa-ffba2bde101e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24894,10 +38376,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:33 GMT"
+ "Tue, 19 May 2020 19:07:38 GMT"
],
"Content-Length": [
- "8772"
+ "19175"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24909,17 +38391,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"tions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6136\\n\\nResourceGroupName : ps886\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps886\\n\\nResourceGroupName : ps6785\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6785\\n\\nResourceGroupName : ps7721\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7721\\n\\nResourceGroupName : ps9011\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9011\\n\\nResourceGroupName : filiz-test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test\\n\\nResourceGroupName : filiz-test-002\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-002\\n\\nResourceGroupName : 919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\n\\nResourceGroupName : 8663c347-6f8d-40ba-8efa-751f4c7a6616\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\n\\nResourceGroupName : 0924917e-8d29-4d74-924e-3445a1087486\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/0924917e-8d29-4d74-924e-3445a1087486\\n\\nResourceGroupName : a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\n\\nResourceGroupName : 3ecff93b-4ffc-4d40-9e66-b723893aca89\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\n\\nResourceGroupName : ps2482\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2482\\n\\nResourceGroupName : ps9089\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9089\\n\\nResourceGroupName : ps2010\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2010\\n\\nResourceGroupName : ps4581\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4581\\n\\nResourceGroupName : ps9344\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9344\\n\\nResourceGroupName : ps3436\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3436\\n\\nResourceGroupName : ps9832\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9832\\n\\nResourceGroupName : ps6758\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6758\\n\\nResourceGroupName : ps1594\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1594\\n\\nResourceGroupName : ps9658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9658\\n\\nResourceGroupName : ps7915\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7915\\n\\nResourceGroupName : filiz-test-001\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-001\\n\\nResourceGroupName : ps1569\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1569\\n\\nResourceGroupName : ps870\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps870\\n\\nResourceGroupName : ps6868\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6868\\n\\nResourceGroupName : ps3816\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3816\\n\\nResourceGroupName : ps845\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps845\\n\\nResourceGroupName : ps3932\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3932\\n\\nResourceGroupName : ps4600\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4600\\n\\nResourceGroupName : ps2414\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2414\\n\\nResourceGroupName : ps1534\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1534\\n\\nResourceGroupName : ps3065\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3065\\n\\nResourceGroupName : ps9031\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9031\\n\\nResourceGroupName : ps2079\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2079\\n\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Executing script: .\\\\userscript.ps1 \\n\\nResourceGroupName : new-testrg\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/new-testrg\\n\\nResourceGroupName : NetworkWatcherRG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/NetworkWatcherRG\\n\\nResourceGroupName : nsgrg\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/nsgrg\\n\\nResourceGroupName : OuldKVRG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/OuldKVRG\\n\\nResourceGroupName : Rg1-Test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/Rg1-Test\\n\\nResourceGroupName : RG_test123\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/RG_test123\\n\\nResourceGroupName : scriptdemo\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/scriptdemo\\n\\nResourceGroupName : storageRG_Test\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/storageRG_Test\\n\\nResourceGroupName : test-dine-shenglol\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/test-dine-shenglol\\n\\nResourceGroupName : testresourcegroup_bp3\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/testresourcegroup_bp3\\n\\nResourceGroupName : VNetBP-RG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/VNetBP-RG\\n\\nResourceGroupName : Ds-TestRg\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/Ds-TestRg\\n\\nResourceGroupName : csmrg769\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg769\\n\\nResourceGroupName : csmrg4942\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg4942\\n\\nResourceGroupName : csmrg2541\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg2541\\n\\nResourceGroupName : csmrg3119\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg3119\\n\\nResourceGroupName : csmrg7839\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg7839\\n\\nResourceGroupName : rjwDeleteMe\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/rjwDeleteMe\\n\\nResourceGroupName : rjw-debug-sacreate\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/rjw-debug-sacreate\\n\\nResourceGroupName : filiz-bp-rg\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-bp-rg\\n\\nResourceGroupName : SDK-test-02\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/SDK-test-02\\n\\nResourceGroupName : shenglol-ps-test-01\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-01\\n\\nResourceGroupName : shenglol-ps-test-02\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-02\\n\\nResourceGroupName : shenglol-ps-test-03\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-03\\n\\nResourceGroupName : ps_test_subscription_deployment\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps_test_subscription_deployment\\n\\nResourceGroupName : filiz-test-003\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-003\\n\\nResourceGroupName : filiz---test--004-rg\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz---test--004-rg\\n\\nResourceGroupName : ps8973\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps8973\\n\\nResourceGroupName : ps7370\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7370\\n\\nResourceGroupName : ps4210\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4210\\n\\nResourceGroupName : ps6235\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6235\\n\\nResourceGroupName : ps6561\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6561\\n\\nResourceGroupName : ps7920\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7920\\n\\nResourceGroupName : ps514\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps514\\n\\nResourceGroupName : ps6838\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6838\\n\\nResourceGroupName : ps193\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps193\\n\\nResourceGroupName : ps2551\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2551\\n\\nResourceGroupName : ps1923\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1923\\n\\nResourceGroupName : test-this\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/test-this\\n\\nResourceGroupName : ps757\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps757\\n\\nResourceGroupName : ps5799\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps5799\\n\\nResourceGroupName : ps9965\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9965\\n\\nResourceGroupName : ps377\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps377\\n\\nResourceGroupName : ps6136\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6136\\n\\nResourceGroupName : ps886\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps886\\n\\nResourceGroupName : ps6785\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6785\\n\\nResourceGroupName : ps7721\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7721\\n\\nResourceGroupName : ps9011\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9011\\n\\nResourceGroupName : filiz-test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test\\n\\nResourceGroupName : filiz-test-002\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-002\\n\\nResourceGroupName : 919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\n\\nResourceGroupName : 8663c347-6f8d-40ba-8efa-751f4c7a6616\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\n\\nResourceGroupName : 0924917e-8d29-4d74-924e-3445a1087486\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/0924917e-8d29-4d74-924e-3445a1087486\\n\\nResourceGroupName : a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\n\\nResourceGroupName : 3ecff93b-4ffc-4d40-9e66-b723893aca89\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\n\\nResourceGroupName : ps2482\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2482\\n\\nResourceGroupName : ps9089\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9089\\n\\nResourceGroupName : ps2010\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2010\\n\\nResourceGroupName : ps4581\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4581\\n\\nResourceGroupName : ps9344\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9344\\n\\nResourceGroupName : ps3436\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3436\\n\\nResourceGroupName : ps9832\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9832\\n\\nResourceGroupName : ps6758\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6758\\n\\nResourceGroupName : ps1594\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1594\\n\\nResourceGroupName : ps9658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9658\\n\\nResourceGroupName : ps7915\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7915\\n\\nResourceGroupName : filiz-test-001\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-001\\n\\nResourceGroupName : ps1569\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1569\\n\\nResourceGroupName : ps870\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps870\\n\\nResourceGroupName : ps6868\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6868\\n\\nResourceGroupName : ps3816\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3816\\n\\nResourceGroupName : ps845\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps845\\n\\nResourceGroupName : ps3932\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3932\\n\\nResourceGroupName : ps4600\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4600\\n\\nResourceGroupName : ps2414\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2414\\n\\nResourceGroupName : ps1534\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1534\\n\\nResourceGroupName : ps3065\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3065\\n\\nResourceGroupName : ps9031\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9031\\n\\nResourceGroupName : ps2658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2658\\n\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default?api-version=2019-10-01-preview&tail=0",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default?api-version=2019-10-01-preview&tail=0",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d84b4a55-2bdf-4b7a-9092-0956cdef94ee"
+ "65dcd94c-b56a-480f-9acc-4bcd7f6e9022"
],
"Accept-Language": [
"en-US"
@@ -24939,7 +38421,7 @@
"no-cache"
],
"x-ms-request-id": [
- "7891b826-5aea-41a3-8cf0-cd03b9fe14e5"
+ "ca58b294-65b4-4afb-a3a0-80dbf4f66cc7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -24948,10 +38430,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "f165ef0f-250e-4526-a0d1-339e20879727"
+ "bc7e432b-79af-4e70-ad59-3480bcb7cda7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224336Z:f165ef0f-250e-4526-a0d1-339e20879727"
+ "NORTHCENTRALUS:20200519T190741Z:bc7e432b-79af-4e70-ad59-3480bcb7cda7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24960,10 +38442,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:35 GMT"
+ "Tue, 19 May 2020 19:07:40 GMT"
],
"Content-Length": [
- "8772"
+ "19175"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24975,17 +38457,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"tions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6136\\n\\nResourceGroupName : ps886\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps886\\n\\nResourceGroupName : ps6785\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6785\\n\\nResourceGroupName : ps7721\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7721\\n\\nResourceGroupName : ps9011\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9011\\n\\nResourceGroupName : filiz-test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test\\n\\nResourceGroupName : filiz-test-002\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-002\\n\\nResourceGroupName : 919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\n\\nResourceGroupName : 8663c347-6f8d-40ba-8efa-751f4c7a6616\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\n\\nResourceGroupName : 0924917e-8d29-4d74-924e-3445a1087486\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/0924917e-8d29-4d74-924e-3445a1087486\\n\\nResourceGroupName : a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\n\\nResourceGroupName : 3ecff93b-4ffc-4d40-9e66-b723893aca89\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\n\\nResourceGroupName : ps2482\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2482\\n\\nResourceGroupName : ps9089\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9089\\n\\nResourceGroupName : ps2010\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2010\\n\\nResourceGroupName : ps4581\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4581\\n\\nResourceGroupName : ps9344\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9344\\n\\nResourceGroupName : ps3436\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3436\\n\\nResourceGroupName : ps9832\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9832\\n\\nResourceGroupName : ps6758\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6758\\n\\nResourceGroupName : ps1594\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1594\\n\\nResourceGroupName : ps9658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9658\\n\\nResourceGroupName : ps7915\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7915\\n\\nResourceGroupName : filiz-test-001\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-001\\n\\nResourceGroupName : ps1569\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1569\\n\\nResourceGroupName : ps870\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps870\\n\\nResourceGroupName : ps6868\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6868\\n\\nResourceGroupName : ps3816\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3816\\n\\nResourceGroupName : ps845\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps845\\n\\nResourceGroupName : ps3932\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3932\\n\\nResourceGroupName : ps4600\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4600\\n\\nResourceGroupName : ps2414\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2414\\n\\nResourceGroupName : ps1534\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1534\\n\\nResourceGroupName : ps3065\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3065\\n\\nResourceGroupName : ps9031\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9031\\n\\nResourceGroupName : ps2079\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2079\\n\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Executing script: .\\\\userscript.ps1 \\n\\nResourceGroupName : new-testrg\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/new-testrg\\n\\nResourceGroupName : NetworkWatcherRG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/NetworkWatcherRG\\n\\nResourceGroupName : nsgrg\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/nsgrg\\n\\nResourceGroupName : OuldKVRG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/OuldKVRG\\n\\nResourceGroupName : Rg1-Test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/Rg1-Test\\n\\nResourceGroupName : RG_test123\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/RG_test123\\n\\nResourceGroupName : scriptdemo\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/scriptdemo\\n\\nResourceGroupName : storageRG_Test\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/storageRG_Test\\n\\nResourceGroupName : test-dine-shenglol\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/test-dine-shenglol\\n\\nResourceGroupName : testresourcegroup_bp3\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/testresourcegroup_bp3\\n\\nResourceGroupName : VNetBP-RG\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/VNetBP-RG\\n\\nResourceGroupName : Ds-TestRg\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/Ds-TestRg\\n\\nResourceGroupName : csmrg769\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg769\\n\\nResourceGroupName : csmrg4942\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg4942\\n\\nResourceGroupName : csmrg2541\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg2541\\n\\nResourceGroupName : csmrg3119\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg3119\\n\\nResourceGroupName : csmrg7839\\nLocation : westeurope\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/csmrg7839\\n\\nResourceGroupName : rjwDeleteMe\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/rjwDeleteMe\\n\\nResourceGroupName : rjw-debug-sacreate\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/rjw-debug-sacreate\\n\\nResourceGroupName : filiz-bp-rg\\nLocation : eastus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-bp-rg\\n\\nResourceGroupName : SDK-test-02\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/SDK-test-02\\n\\nResourceGroupName : shenglol-ps-test-01\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-01\\n\\nResourceGroupName : shenglol-ps-test-02\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-02\\n\\nResourceGroupName : shenglol-ps-test-03\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/shenglol-ps-test-03\\n\\nResourceGroupName : ps_test_subscription_deployment\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps_test_subscription_deployment\\n\\nResourceGroupName : filiz-test-003\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-003\\n\\nResourceGroupName : filiz---test--004-rg\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz---test--004-rg\\n\\nResourceGroupName : ps8973\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps8973\\n\\nResourceGroupName : ps7370\\nLocation : westus\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7370\\n\\nResourceGroupName : ps4210\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4210\\n\\nResourceGroupName : ps6235\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6235\\n\\nResourceGroupName : ps6561\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6561\\n\\nResourceGroupName : ps7920\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7920\\n\\nResourceGroupName : ps514\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps514\\n\\nResourceGroupName : ps6838\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6838\\n\\nResourceGroupName : ps193\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps193\\n\\nResourceGroupName : ps2551\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2551\\n\\nResourceGroupName : ps1923\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1923\\n\\nResourceGroupName : test-this\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/test-this\\n\\nResourceGroupName : ps757\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps757\\n\\nResourceGroupName : ps5799\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps5799\\n\\nResourceGroupName : ps9965\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9965\\n\\nResourceGroupName : ps377\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps377\\n\\nResourceGroupName : ps6136\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6136\\n\\nResourceGroupName : ps886\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps886\\n\\nResourceGroupName : ps6785\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6785\\n\\nResourceGroupName : ps7721\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7721\\n\\nResourceGroupName : ps9011\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9011\\n\\nResourceGroupName : filiz-test\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test\\n\\nResourceGroupName : filiz-test-002\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-002\\n\\nResourceGroupName : 919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\n\\nResourceGroupName : 8663c347-6f8d-40ba-8efa-751f4c7a6616\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\n\\nResourceGroupName : 0924917e-8d29-4d74-924e-3445a1087486\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/0924917e-8d29-4d74-924e-3445a1087486\\n\\nResourceGroupName : a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\n\\nResourceGroupName : 3ecff93b-4ffc-4d40-9e66-b723893aca89\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\n\\nResourceGroupName : ps2482\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2482\\n\\nResourceGroupName : ps9089\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9089\\n\\nResourceGroupName : ps2010\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2010\\n\\nResourceGroupName : ps4581\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4581\\n\\nResourceGroupName : ps9344\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9344\\n\\nResourceGroupName : ps3436\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3436\\n\\nResourceGroupName : ps9832\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9832\\n\\nResourceGroupName : ps6758\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6758\\n\\nResourceGroupName : ps1594\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1594\\n\\nResourceGroupName : ps9658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9658\\n\\nResourceGroupName : ps7915\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps7915\\n\\nResourceGroupName : filiz-test-001\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/filiz-test-001\\n\\nResourceGroupName : ps1569\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1569\\n\\nResourceGroupName : ps870\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps870\\n\\nResourceGroupName : ps6868\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps6868\\n\\nResourceGroupName : ps3816\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3816\\n\\nResourceGroupName : ps845\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps845\\n\\nResourceGroupName : ps3932\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3932\\n\\nResourceGroupName : ps4600\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps4600\\n\\nResourceGroupName : ps2414\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2414\\n\\nResourceGroupName : ps1534\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps1534\\n\\nResourceGroupName : ps3065\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps3065\\n\\nResourceGroupName : ps9031\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps9031\\n\\nResourceGroupName : ps2658\\nLocation : westus2\\nProvisioningState : Succeeded\\nTags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2658\\n\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default?api-version=2019-10-01-preview&tail=5",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD01",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default?api-version=2019-10-01-preview&tail=5",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD01",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d9dea23-e00e-4d08-aee6-337c9c626e18"
+ "d5c931f4-0f47-4ecf-a528-504c9f04e3be"
],
"Accept-Language": [
"en-US"
@@ -25005,7 +38487,7 @@
"no-cache"
],
"x-ms-request-id": [
- "e58f08b4-1e17-4f40-ac68-924a98aa0935"
+ "844ca7da-d36f-4592-8af3-8ec744be338d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -25014,10 +38496,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "e4b292ce-f826-418f-9583-38f67d392499"
+ "b44e22c3-bd64-4745-9ad0-d4b6099d2b39"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224333Z:e4b292ce-f826-418f-9583-38f67d392499"
+ "NORTHCENTRALUS:20200519T190739Z:b44e22c3-bd64-4745-9ad0-d4b6099d2b39"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25026,7 +38508,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:32 GMT"
+ "Tue, 19 May 2020 19:07:39 GMT"
],
"Content-Length": [
"472"
@@ -25041,17 +38523,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Tags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2079\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Tags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2658\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default?api-version=2019-10-01-preview&tail=5",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD01",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default?api-version=2019-10-01-preview&tail=5",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD01",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f6671eb-3202-47ba-b4f0-9da894ed47d1"
+ "89397c74-c05a-4068-b6f1-8ba30c91c75d"
],
"Accept-Language": [
"en-US"
@@ -25071,7 +38553,7 @@
"no-cache"
],
"x-ms-request-id": [
- "be958ae6-210c-4630-9428-33bddc5a6cf0"
+ "84bd11e5-82ee-4023-8222-d376c6db3a23"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -25080,10 +38562,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "d5da32ac-777f-492d-939d-36be9e056e5b"
+ "2861a3cb-6ac5-4a71-8801-6a4bbe88ab7e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224334Z:d5da32ac-777f-492d-939d-36be9e056e5b"
+ "NORTHCENTRALUS:20200519T190740Z:2861a3cb-6ac5-4a71-8801-6a4bbe88ab7e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25092,7 +38574,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:34 GMT"
+ "Tue, 19 May 2020 19:07:39 GMT"
],
"Content-Length": [
"472"
@@ -25107,17 +38589,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Tags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2079\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Tags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2658\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default?api-version=2019-10-01-preview&tail=5",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD01",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default?api-version=2019-10-01-preview&tail=5",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD01",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f071ab6-ad4f-4085-bc02-dee6d83da0aa"
+ "fe72f04e-39dd-4c23-baef-0085deada78c"
],
"Accept-Language": [
"en-US"
@@ -25137,7 +38619,7 @@
"no-cache"
],
"x-ms-request-id": [
- "62c3d404-7435-4398-9c8f-c789f0cfc2ee"
+ "dff24f46-ea89-4de7-a913-054561e25140"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -25146,10 +38628,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "70bc69df-b760-44ea-b61b-6efdcf5a7e36"
+ "59249c73-58d6-47f1-8156-d81029fa2f8c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224337Z:70bc69df-b760-44ea-b61b-6efdcf5a7e36"
+ "NORTHCENTRALUS:20200519T190742Z:59249c73-58d6-47f1-8156-d81029fa2f8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25158,7 +38640,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:36 GMT"
+ "Tue, 19 May 2020 19:07:42 GMT"
],
"Content-Length": [
"472"
@@ -25173,17 +38655,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Tags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2079\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"Tags : \\nResourceId : /subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourc\\n eGroups/ps2658\\n\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a?api-version=2019-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c?api-version=2019-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab818a7b-6980-452d-b8a6-c6fcc64e7909"
+ "792ba8dc-8bca-46be-9985-d6471b89954c"
],
"Accept-Language": [
"en-US"
@@ -25203,7 +38685,7 @@
"no-cache"
],
"x-ms-request-id": [
- "bf42c125-2a24-42cc-bbd1-23b6eb951ee6"
+ "d2997453-6c9e-47b9-a419-7af385997ea0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -25212,10 +38694,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "37efb56a-b2bb-4ac5-a66e-c0730f2926f8"
+ "6fd4aa9e-4831-47b4-afd4-0d1f006a62e1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224335Z:37efb56a-b2bb-4ac5-a66e-c0730f2926f8"
+ "NORTHCENTRALUS:20200519T190740Z:6fd4aa9e-4831-47b4-afd4-0d1f006a62e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25224,10 +38706,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:35 GMT"
+ "Tue, 19 May 2020 19:07:40 GMT"
],
"Content-Length": [
- "28356"
+ "29016"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25239,17 +38721,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"kind\": \"AzurePowerShell\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-13T22:42:16.117084Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-13T22:42:16.117084Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azPowerShellVersion\": \"3.3\",\r\n \"scriptContent\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\",\r\n \"arguments\": \"\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.ContainerInstance/containerGroups/j7c7aq2znrynqazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Storage/storageAccounts/j7c7aq2znrynqazscripts\",\r\n \"startTime\": \"2020-05-13T22:42:18.2400867Z\",\r\n \"endTime\": \"2020-05-13T22:43:24.1685001Z\",\r\n \"expirationTime\": \"2020-05-14T22:43:24.1685001Z\"\r\n },\r\n \"outputs\": {\r\n \"RGs\": [\r\n {\r\n \"ResourceGroupName\": \"new-testrg\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"NetworkWatcherRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"nsgrg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"OuldKVRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Rg1-Test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"RG_test123\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"scriptdemo\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"storageRG_Test\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-dine-shenglol\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"testresourcegroup_bp3\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"VNetBP-RG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Ds-TestRg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg769\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg4942\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg2541\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg3119\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg7839\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjwDeleteMe\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjw-debug-sacreate\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-bp-rg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"SDK-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-01\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-03\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps_test_subscription_deployment\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-003\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz---test--004-rg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4210\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6235\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6561\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7920\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps514\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6838\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps193\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2551\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1923\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-this\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps757\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps5799\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9965\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps377\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6136\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps886\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6785\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7721\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9011\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-002\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2482\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9089\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2010\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4581\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9344\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3436\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9832\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6758\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1594\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7915\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-001\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1569\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps870\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6868\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3816\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps845\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3932\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4600\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2414\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1534\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3065\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9031\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2079\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079\",\r\n \"ManagedBy\": null\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n}",
+ "ResponseBody": "{\r\n \"kind\": \"AzurePowerShell\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-19T19:05:30.8424495Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-19T19:05:30.8424495Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azPowerShellVersion\": \"3.3\",\r\n \"scriptContent\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\",\r\n \"arguments\": \"\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.ContainerInstance/containerGroups/4k4zfz2jhoo7gazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Storage/storageAccounts/4k4zfz2jhoo7gazscripts\",\r\n \"startTime\": \"2020-05-19T19:05:32.5752816Z\",\r\n \"endTime\": \"2020-05-19T19:07:25.4969788Z\",\r\n \"expirationTime\": \"2020-05-20T19:07:25.4969788Z\"\r\n },\r\n \"outputs\": {\r\n \"RGs\": [\r\n {\r\n \"ResourceGroupName\": \"new-testrg\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"NetworkWatcherRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"nsgrg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"OuldKVRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Rg1-Test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"RG_test123\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"scriptdemo\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"storageRG_Test\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-dine-shenglol\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"testresourcegroup_bp3\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"VNetBP-RG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Ds-TestRg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg769\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg4942\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg2541\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg3119\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg7839\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjwDeleteMe\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjw-debug-sacreate\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-bp-rg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"SDK-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-01\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-03\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps_test_subscription_deployment\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-003\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz---test--004-rg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps8973\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7370\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4210\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6235\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6561\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7920\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps514\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6838\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps193\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2551\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1923\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-this\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps757\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps5799\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9965\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps377\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6136\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps886\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6785\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7721\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9011\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-002\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2482\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9089\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2010\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4581\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9344\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3436\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9832\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6758\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1594\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7915\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-001\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1569\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps870\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6868\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3816\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps845\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3932\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4600\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2414\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1534\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3065\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9031\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658\",\r\n \"ManagedBy\": null\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a?api-version=2019-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNTI1OTI5ZmUtNGJiYy00Y2YyLTk5MmQtMGQ3MjM1ZjFiZDJhP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c?api-version=2019-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtM2Y1NWRlMTktMmM0ZC00ZjAyLWFmZDUtZTM4ZDMxODYxMzVjP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b91ad0b-e693-4d75-b526-a33c87e1d300"
+ "b3ea61dd-208f-4b3b-8e60-beae97771276"
],
"Accept-Language": [
"en-US"
@@ -25269,7 +38751,7 @@
"no-cache"
],
"x-ms-request-id": [
- "3a3685e2-a027-4c94-a314-10e96ceca631"
+ "b84812aa-5be5-4254-b023-0216d06a7e5c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -25278,10 +38760,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "132cff88-7d29-45d5-ad3b-68872792a769"
+ "b300ea51-d2fd-4e8e-bb1b-598a6437eb5b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224336Z:132cff88-7d29-45d5-ad3b-68872792a769"
+ "NORTHCENTRALUS:20200519T190742Z:b300ea51-d2fd-4e8e-bb1b-598a6437eb5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25290,10 +38772,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:36 GMT"
+ "Tue, 19 May 2020 19:07:41 GMT"
],
"Content-Length": [
- "28356"
+ "29016"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25305,17 +38787,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"kind\": \"AzurePowerShell\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-13T22:42:16.117084Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-13T22:42:16.117084Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azPowerShellVersion\": \"3.3\",\r\n \"scriptContent\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\",\r\n \"arguments\": \"\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.ContainerInstance/containerGroups/j7c7aq2znrynqazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Storage/storageAccounts/j7c7aq2znrynqazscripts\",\r\n \"startTime\": \"2020-05-13T22:42:18.2400867Z\",\r\n \"endTime\": \"2020-05-13T22:43:24.1685001Z\",\r\n \"expirationTime\": \"2020-05-14T22:43:24.1685001Z\"\r\n },\r\n \"outputs\": {\r\n \"RGs\": [\r\n {\r\n \"ResourceGroupName\": \"new-testrg\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"NetworkWatcherRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"nsgrg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"OuldKVRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Rg1-Test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"RG_test123\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"scriptdemo\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"storageRG_Test\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-dine-shenglol\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"testresourcegroup_bp3\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"VNetBP-RG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Ds-TestRg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg769\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg4942\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg2541\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg3119\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg7839\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjwDeleteMe\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjw-debug-sacreate\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-bp-rg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"SDK-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-01\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-03\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps_test_subscription_deployment\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-003\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz---test--004-rg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4210\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6235\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6561\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7920\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps514\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6838\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps193\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2551\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1923\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-this\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps757\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps5799\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9965\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps377\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6136\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps886\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6785\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7721\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9011\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-002\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2482\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9089\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2010\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4581\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9344\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3436\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9832\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6758\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1594\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7915\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-001\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1569\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps870\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6868\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3816\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps845\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3932\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4600\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2414\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1534\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3065\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9031\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2079\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079\",\r\n \"ManagedBy\": null\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2079/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-525929fe-4bbc-4cf2-992d-0d7235f1bd2a\"\r\n}",
+ "ResponseBody": "{\r\n \"kind\": \"AzurePowerShell\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-19T19:05:30.8424495Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-19T19:05:30.8424495Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azPowerShellVersion\": \"3.3\",\r\n \"scriptContent\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\",\r\n \"arguments\": \"\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.ContainerInstance/containerGroups/4k4zfz2jhoo7gazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Storage/storageAccounts/4k4zfz2jhoo7gazscripts\",\r\n \"startTime\": \"2020-05-19T19:05:32.5752816Z\",\r\n \"endTime\": \"2020-05-19T19:07:25.4969788Z\",\r\n \"expirationTime\": \"2020-05-20T19:07:25.4969788Z\"\r\n },\r\n \"outputs\": {\r\n \"RGs\": [\r\n {\r\n \"ResourceGroupName\": \"new-testrg\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"NetworkWatcherRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"nsgrg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"OuldKVRG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Rg1-Test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"RG_test123\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"scriptdemo\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"storageRG_Test\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-dine-shenglol\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"testresourcegroup_bp3\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"VNetBP-RG\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"Ds-TestRg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg769\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg4942\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg2541\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg3119\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"csmrg7839\",\r\n \"Location\": \"westeurope\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjwDeleteMe\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"rjw-debug-sacreate\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-bp-rg\",\r\n \"Location\": \"eastus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"SDK-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-01\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-02\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"shenglol-ps-test-03\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps_test_subscription_deployment\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-003\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz---test--004-rg\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps8973\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8973\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7370\",\r\n \"Location\": \"westus\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7370\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4210\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6235\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6561\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7920\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps514\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6838\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps193\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2551\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1923\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"test-this\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps757\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps5799\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9965\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps377\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6136\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps886\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6785\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7721\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9011\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-002\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2482\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9089\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2010\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4581\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9344\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3436\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9832\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6758\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1594\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps7915\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"filiz-test-001\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": \"System.Collections.Hashtable\",\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1569\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps870\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps6868\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3816\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps845\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3932\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps4600\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2414\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps1534\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps3065\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps9031\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\",\r\n \"ManagedBy\": null\r\n },\r\n {\r\n \"ResourceGroupName\": \"ps2658\",\r\n \"Location\": \"westus2\",\r\n \"ProvisioningState\": \"Succeeded\",\r\n \"Tags\": null,\r\n \"TagsTable\": null,\r\n \"ResourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658\",\r\n \"ManagedBy\": null\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2658/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-3f55de19-2c4d-4f02-afd5-e38d3186135c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2079?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjA3OT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2658?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjY1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3af5561e-4708-4905-bc23-d8d651045f08"
+ "056893ff-fee2-49fa-8cf7-367bf6b2ef24"
],
"Accept-Language": [
"en-US"
@@ -25335,7 +38817,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -25344,13 +38826,13 @@
"14999"
],
"x-ms-request-id": [
- "e9d27825-a489-48ff-a130-dbf880b7c75c"
+ "c648e725-e88e-43b0-a445-b6eb71f33760"
],
"x-ms-correlation-request-id": [
- "e9d27825-a489-48ff-a130-dbf880b7c75c"
+ "c648e725-e88e-43b0-a445-b6eb71f33760"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224339Z:e9d27825-a489-48ff-a130-dbf880b7c75c"
+ "NORTHCENTRALUS:20200519T190745Z:c648e725-e88e-43b0-a445-b6eb71f33760"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25359,7 +38841,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:43:38 GMT"
+ "Tue, 19 May 2020 19:07:44 GMT"
],
"Expires": [
"-1"
@@ -25372,8 +38854,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -25392,79 +38874,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "f9877857-45d7-49c7-9bdf-3c62360949b2"
- ],
- "x-ms-correlation-request-id": [
- "f9877857-45d7-49c7-9bdf-3c62360949b2"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224354Z:f9877857-45d7-49c7-9bdf-3c62360949b2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:43:54 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-request-id": [
- "58a69139-f74d-4b0d-837c-4691e2be6d08"
+ "2ae4ba90-119b-4b65-98d1-b24990178971"
],
"x-ms-correlation-request-id": [
- "58a69139-f74d-4b0d-837c-4691e2be6d08"
+ "2ae4ba90-119b-4b65-98d1-b24990178971"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224409Z:58a69139-f74d-4b0d-837c-4691e2be6d08"
+ "NORTHCENTRALUS:20200519T190800Z:2ae4ba90-119b-4b65-98d1-b24990178971"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25473,7 +38898,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:44:08 GMT"
+ "Tue, 19 May 2020 19:07:59 GMT"
],
"Expires": [
"-1"
@@ -25486,8 +38911,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -25506,22 +38931,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
],
"x-ms-request-id": [
- "729b6b91-7635-4ebb-b0db-f0724fe04d52"
+ "7fe1d7d1-cd66-4dc7-a993-025691c4ba67"
],
"x-ms-correlation-request-id": [
- "729b6b91-7635-4ebb-b0db-f0724fe04d52"
+ "7fe1d7d1-cd66-4dc7-a993-025691c4ba67"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224424Z:729b6b91-7635-4ebb-b0db-f0724fe04d52"
+ "NORTHCENTRALUS:20200519T190816Z:7fe1d7d1-cd66-4dc7-a993-025691c4ba67"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25530,7 +38955,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:44:24 GMT"
+ "Tue, 19 May 2020 19:08:15 GMT"
],
"Expires": [
"-1"
@@ -25543,8 +38968,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -25563,22 +38988,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11996"
],
"x-ms-request-id": [
- "18826739-3fa4-4a55-bf0a-3270f2239dc4"
+ "d18e4a8a-c541-4565-b140-0a1cd769e00b"
],
"x-ms-correlation-request-id": [
- "18826739-3fa4-4a55-bf0a-3270f2239dc4"
+ "d18e4a8a-c541-4565-b140-0a1cd769e00b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224439Z:18826739-3fa4-4a55-bf0a-3270f2239dc4"
+ "NORTHCENTRALUS:20200519T190831Z:d18e4a8a-c541-4565-b140-0a1cd769e00b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25587,7 +39012,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:44:39 GMT"
+ "Tue, 19 May 2020 19:08:30 GMT"
],
"Expires": [
"-1"
@@ -25600,8 +39025,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -25620,22 +39045,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11995"
],
"x-ms-request-id": [
- "0666a5be-c7f2-4738-91e8-b4cbdf51a5b6"
+ "f4a29f02-bc2f-481a-bea5-b0f766f8a543"
],
"x-ms-correlation-request-id": [
- "0666a5be-c7f2-4738-91e8-b4cbdf51a5b6"
+ "f4a29f02-bc2f-481a-bea5-b0f766f8a543"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224455Z:0666a5be-c7f2-4738-91e8-b4cbdf51a5b6"
+ "NORTHCENTRALUS:20200519T190846Z:f4a29f02-bc2f-481a-bea5-b0f766f8a543"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25644,7 +39069,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:44:54 GMT"
+ "Tue, 19 May 2020 19:08:45 GMT"
],
"Expires": [
"-1"
@@ -25657,8 +39082,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -25677,22 +39102,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11994"
],
"x-ms-request-id": [
- "50fb2fdc-92cf-426b-ac25-4beaa61f072c"
+ "6355325a-660d-42cf-a638-99203c35ce95"
],
"x-ms-correlation-request-id": [
- "50fb2fdc-92cf-426b-ac25-4beaa61f072c"
+ "6355325a-660d-42cf-a638-99203c35ce95"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224510Z:50fb2fdc-92cf-426b-ac25-4beaa61f072c"
+ "NORTHCENTRALUS:20200519T190901Z:6355325a-660d-42cf-a638-99203c35ce95"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25701,7 +39126,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:10 GMT"
+ "Tue, 19 May 2020 19:09:00 GMT"
],
"Expires": [
"-1"
@@ -25714,8 +39139,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -25734,16 +39159,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11993"
],
"x-ms-request-id": [
- "34328cdb-0151-413f-aa3a-834178e0d542"
+ "da9f4e07-67ae-44eb-9dc5-a4ca9276225d"
],
"x-ms-correlation-request-id": [
- "34328cdb-0151-413f-aa3a-834178e0d542"
+ "da9f4e07-67ae-44eb-9dc5-a4ca9276225d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224525Z:34328cdb-0151-413f-aa3a-834178e0d542"
+ "NORTHCENTRALUS:20200519T190916Z:da9f4e07-67ae-44eb-9dc5-a4ca9276225d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25752,7 +39177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:24 GMT"
+ "Tue, 19 May 2020 19:09:16 GMT"
],
"Expires": [
"-1"
@@ -25768,8 +39193,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNzktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd056a3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI2NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJMk5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -25788,16 +39213,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11992"
],
"x-ms-request-id": [
- "39555f70-839d-4b5c-b239-caf83565d6b3"
+ "8a8a36f1-8e32-4065-bd58-016db8d76de3"
],
"x-ms-correlation-request-id": [
- "39555f70-839d-4b5c-b239-caf83565d6b3"
+ "8a8a36f1-8e32-4065-bd58-016db8d76de3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224525Z:39555f70-839d-4b5c-b239-caf83565d6b3"
+ "NORTHCENTRALUS:20200519T190916Z:8a8a36f1-8e32-4065-bd58-016db8d76de3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25806,7 +39231,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:24 GMT"
+ "Tue, 19 May 2020 19:09:16 GMT"
],
"Expires": [
"-1"
@@ -25824,8 +39249,8 @@
],
"Names": {
"Test-GetDeploymentScriptLog-PowerShell": [
- "ps2079",
- "ps9886"
+ "ps2658",
+ "ps710"
]
},
"Variables": {
diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptPipeDeploymentScriptObjectToGetLogs.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptPipeDeploymentScriptObjectToGetLogs.json
index 5e167861763a..5607e8bfa6fb 100644
--- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptPipeDeploymentScriptObjectToGetLogs.json
+++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptPipeDeploymentScriptObjectToGetLogs.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4ND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9aaffef-3504-4297-a48f-bcbbe4f2db34"
+ "566d1af0-ffed-4502-a9e2-759d7908caab"
],
"Accept-Language": [
"en-US"
@@ -33,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "507b19ef-757b-4fc6-a1e7-70a3c175b4dd"
+ "e9a1fba6-478c-47ec-9f1f-74614327211a"
],
"x-ms-correlation-request-id": [
- "507b19ef-757b-4fc6-a1e7-70a3c175b4dd"
+ "e9a1fba6-478c-47ec-9f1f-74614327211a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223457Z:507b19ef-757b-4fc6-a1e7-70a3c175b4dd"
+ "NORTHCENTRALUS:20200514T212645Z:e9a1fba6-478c-47ec-9f1f-74614327211a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:34:57 GMT"
+ "Thu, 14 May 2020 21:26:45 GMT"
],
"Content-Length": [
"98"
@@ -67,13 +67,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4ND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b3090cc-1966-45e3-b49d-46fa63ffe0ca"
+ "b4ed7b8b-8344-448f-9239-8d03dee8e708"
],
"Accept-Language": [
"en-US"
@@ -96,13 +96,13 @@
"11999"
],
"x-ms-request-id": [
- "72126d96-37dc-4728-9b88-6c9f70898b00"
+ "665cf68b-5dbc-479b-82d5-0383942dcfaf"
],
"x-ms-correlation-request-id": [
- "72126d96-37dc-4728-9b88-6c9f70898b00"
+ "665cf68b-5dbc-479b-82d5-0383942dcfaf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223639Z:72126d96-37dc-4728-9b88-6c9f70898b00"
+ "NORTHCENTRALUS:20200514T212750Z:665cf68b-5dbc-479b-82d5-0383942dcfaf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:38 GMT"
+ "Thu, 14 May 2020 21:27:50 GMT"
],
"Content-Length": [
"0"
@@ -127,13 +127,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4ND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2dc033c7-66c2-49dc-935f-152494c701e7"
+ "f0219d95-5b31-47ab-bd9c-e46eb54ff138"
],
"Accept-Language": [
"en-US"
@@ -162,13 +162,13 @@
"1199"
],
"x-ms-request-id": [
- "ad91d845-5dcc-476c-9d5d-f63be007ae55"
+ "037350d8-0b19-41fe-9431-e69b2f196f1e"
],
"x-ms-correlation-request-id": [
- "ad91d845-5dcc-476c-9d5d-f63be007ae55"
+ "037350d8-0b19-41fe-9431-e69b2f196f1e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223458Z:ad91d845-5dcc-476c-9d5d-f63be007ae55"
+ "NORTHCENTRALUS:20200514T212646Z:037350d8-0b19-41fe-9431-e69b2f196f1e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -177,7 +177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:34:58 GMT"
+ "Thu, 14 May 2020 21:26:46 GMT"
],
"Content-Length": [
"210"
@@ -192,17 +192,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184\",\r\n \"name\": \"ps8184\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458\",\r\n \"name\": \"ps3458\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/validate?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTcvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500/validate?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMC92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6edeba34-100a-4697-b2e4-a7f532ff964d"
+ "e6e7a32c-2b01-488b-a90a-7717ce016d9c"
],
"Accept-Language": [
"en-US"
@@ -231,13 +231,13 @@
"1199"
],
"x-ms-request-id": [
- "02e7940d-5d53-4a30-92f0-4360a512dde7"
+ "24e81938-67ea-420a-87a5-f2dfaf96e3d1"
],
"x-ms-correlation-request-id": [
- "02e7940d-5d53-4a30-92f0-4360a512dde7"
+ "24e81938-67ea-420a-87a5-f2dfaf96e3d1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223500Z:02e7940d-5d53-4a30-92f0-4360a512dde7"
+ "NORTHCENTRALUS:20200514T212648Z:24e81938-67ea-420a-87a5-f2dfaf96e3d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -246,10 +246,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:00 GMT"
+ "Thu, 14 May 2020 21:26:48 GMT"
],
"Content-Length": [
- "1634"
+ "1631"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,17 +261,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"312fa900-965d-4d08-82b6-36c593ac5732\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:34:59.7433163Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"02e7940d-5d53-4a30-92f0-4360a512dde7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-312fa900-965d-4d08-82b6-36c593ac5732\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"81eae3bb-721b-4df0-9505-0b7f8a459001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:26:47.794611Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"24e81938-67ea-420a-87a5-f2dfaf96e3d1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-81eae3bb-721b-4df0-9505-0b7f8a459001\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azCliVersion\": \"[parameters('azCliVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs]\",\r\n \"type\": \"object\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"foo bar\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzureCLI\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a30cae15-3c21-495c-9010-0b4ff9f8e542"
+ "aafb73ff-b0c2-40f8-849b-28e5271a806a"
],
"Accept-Language": [
"en-US"
@@ -297,19 +297,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operationStatuses/08586121975844325188?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operationStatuses/08586121152763615057?api-version=2019-10-01"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "96fbbb09-7847-4c24-9dbe-23c0ad7dbb46"
+ "c212046f-6f18-4bc7-a300-a9d7afec4c46"
],
"x-ms-correlation-request-id": [
- "96fbbb09-7847-4c24-9dbe-23c0ad7dbb46"
+ "c212046f-6f18-4bc7-a300-a9d7afec4c46"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223502Z:96fbbb09-7847-4c24-9dbe-23c0ad7dbb46"
+ "NORTHCENTRALUS:20200514T212650Z:c212046f-6f18-4bc7-a300-a9d7afec4c46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -318,10 +318,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:02 GMT"
+ "Thu, 14 May 2020 21:26:50 GMT"
],
"Content-Length": [
- "1425"
+ "1422"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,17 +333,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:35:01.7133084Z\",\r\n \"duration\": \"PT0.6681852S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-14T21:26:49.8562661Z\",\r\n \"duration\": \"PT0.740147S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a736ba56-4a46-482c-999a-eae57bf6979b"
+ "539dfbfe-a7d6-493c-aec0-43c51eda9ff3"
],
"Accept-Language": [
"en-US"
@@ -363,16 +363,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-request-id": [
- "029bd930-a032-4f7b-bc51-eb51b0109391"
+ "611230a7-7739-44c2-ba9a-1836d8d40411"
],
"x-ms-correlation-request-id": [
- "029bd930-a032-4f7b-bc51-eb51b0109391"
+ "611230a7-7739-44c2-ba9a-1836d8d40411"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223502Z:029bd930-a032-4f7b-bc51-eb51b0109391"
+ "NORTHCENTRALUS:20200514T212650Z:611230a7-7739-44c2-ba9a-1836d8d40411"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,7 +381,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:02 GMT"
+ "Thu, 14 May 2020 21:26:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -400,13 +400,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f6294e6-9e3c-41ec-b672-a17cc8fa6980"
+ "7cda8bf7-4010-45c4-a3be-ba9a1ecf9673"
],
"Accept-Language": [
"en-US"
@@ -426,16 +426,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-request-id": [
- "13a3c1f1-fba1-46ba-a760-847ce446877d"
+ "40bb0675-d2ff-4a34-aef9-aa7461744a58"
],
"x-ms-correlation-request-id": [
- "13a3c1f1-fba1-46ba-a760-847ce446877d"
+ "40bb0675-d2ff-4a34-aef9-aa7461744a58"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223502Z:13a3c1f1-fba1-46ba-a760-847ce446877d"
+ "NORTHCENTRALUS:20200514T212651Z:40bb0675-d2ff-4a34-aef9-aa7461744a58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:02 GMT"
+ "Thu, 14 May 2020 21:26:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -463,13 +463,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ff53257-d94b-4f18-8813-b160bf9f9af2"
+ "0412020b-1e07-4252-bc08-0d69718dfc97"
],
"Accept-Language": [
"en-US"
@@ -489,16 +489,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-request-id": [
- "94c54f70-96f4-4409-b7de-aacee11d287b"
+ "5b2ffd94-b711-4bb7-9966-2bcde0cb643c"
],
"x-ms-correlation-request-id": [
- "94c54f70-96f4-4409-b7de-aacee11d287b"
+ "5b2ffd94-b711-4bb7-9966-2bcde0cb643c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223503Z:94c54f70-96f4-4409-b7de-aacee11d287b"
+ "NORTHCENTRALUS:20200514T212651Z:5b2ffd94-b711-4bb7-9966-2bcde0cb643c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,7 +507,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:03 GMT"
+ "Thu, 14 May 2020 21:26:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -526,13 +526,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d210a66e-575f-4cb0-8bc2-77c5a716d298"
+ "36298be1-0da5-4e1d-8e4d-3ca99e9f2918"
],
"Accept-Language": [
"en-US"
@@ -552,16 +552,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11992"
],
"x-ms-request-id": [
- "28b1baa8-f500-498a-8780-21c72870d312"
+ "680edccb-34fd-4960-8e8d-c5ad15110a10"
],
"x-ms-correlation-request-id": [
- "28b1baa8-f500-498a-8780-21c72870d312"
+ "680edccb-34fd-4960-8e8d-c5ad15110a10"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223503Z:28b1baa8-f500-498a-8780-21c72870d312"
+ "NORTHCENTRALUS:20200514T212651Z:680edccb-34fd-4960-8e8d-c5ad15110a10"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +570,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:03 GMT"
+ "Thu, 14 May 2020 21:26:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -589,13 +589,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce902057-6c67-4740-bd90-9c2d993667dd"
+ "4e4608d3-f42c-43f4-9514-e3d7a6429784"
],
"Accept-Language": [
"en-US"
@@ -615,16 +615,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11990"
],
"x-ms-request-id": [
- "60624878-d0b4-4a13-b23c-037c6e3372d7"
+ "73087a71-4f4d-4e73-9bf5-fce6da64337a"
],
"x-ms-correlation-request-id": [
- "60624878-d0b4-4a13-b23c-037c6e3372d7"
+ "73087a71-4f4d-4e73-9bf5-fce6da64337a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223503Z:60624878-d0b4-4a13-b23c-037c6e3372d7"
+ "NORTHCENTRALUS:20200514T212652Z:73087a71-4f4d-4e73-9bf5-fce6da64337a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,7 +633,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:03 GMT"
+ "Thu, 14 May 2020 21:26:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -652,13 +652,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a6b1ea22-2ea9-4841-86a0-cee47228645b"
+ "cb3e6ad3-f739-4dfe-a035-0defe49ec88c"
],
"Accept-Language": [
"en-US"
@@ -678,16 +678,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11988"
],
"x-ms-request-id": [
- "25f65db1-dcd7-4307-95d5-b2058c7d5cb7"
+ "3c9ef424-7039-4ddf-9f12-db3d23a7006a"
],
"x-ms-correlation-request-id": [
- "25f65db1-dcd7-4307-95d5-b2058c7d5cb7"
+ "3c9ef424-7039-4ddf-9f12-db3d23a7006a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223504Z:25f65db1-dcd7-4307-95d5-b2058c7d5cb7"
+ "NORTHCENTRALUS:20200514T212652Z:3c9ef424-7039-4ddf-9f12-db3d23a7006a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -696,7 +696,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:04 GMT"
+ "Thu, 14 May 2020 21:26:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -715,13 +715,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca993194-8ec1-4a6f-9641-3aae9e935739"
+ "72616fe3-00eb-4cee-ab45-66b53d5aaa66"
],
"Accept-Language": [
"en-US"
@@ -741,16 +741,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11986"
],
"x-ms-request-id": [
- "f661d381-e6be-45de-be4d-7be724b64149"
+ "0ec217d8-b91e-48aa-8eaa-5faaffcde94a"
],
"x-ms-correlation-request-id": [
- "f661d381-e6be-45de-be4d-7be724b64149"
+ "0ec217d8-b91e-48aa-8eaa-5faaffcde94a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223504Z:f661d381-e6be-45de-be4d-7be724b64149"
+ "NORTHCENTRALUS:20200514T212652Z:0ec217d8-b91e-48aa-8eaa-5faaffcde94a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -759,7 +759,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:04 GMT"
+ "Thu, 14 May 2020 21:26:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -778,13 +778,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18f95b4b-ce64-492e-a619-e05e7efc6f3b"
+ "bee1ad98-6fa4-4454-93d8-ae38afb93280"
],
"Accept-Language": [
"en-US"
@@ -804,16 +804,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11984"
],
"x-ms-request-id": [
- "ce6931df-e32a-4d60-8300-58035f1e8fcd"
+ "aa168492-89c7-4f72-9a54-84df30f62475"
],
"x-ms-correlation-request-id": [
- "ce6931df-e32a-4d60-8300-58035f1e8fcd"
+ "aa168492-89c7-4f72-9a54-84df30f62475"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223505Z:ce6931df-e32a-4d60-8300-58035f1e8fcd"
+ "NORTHCENTRALUS:20200514T212653Z:aa168492-89c7-4f72-9a54-84df30f62475"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -822,7 +822,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:05 GMT"
+ "Thu, 14 May 2020 21:26:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -841,13 +841,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a5adb6b-b49e-4e34-bbf4-8f0b750365d8"
+ "393e5797-d80a-4a42-acd3-9dca0a3f04f9"
],
"Accept-Language": [
"en-US"
@@ -867,16 +867,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11982"
],
"x-ms-request-id": [
- "d4131870-ecef-4803-b9fd-c84fc7773010"
+ "abc64ca7-1f05-46b4-936f-25ac7b9b9b33"
],
"x-ms-correlation-request-id": [
- "d4131870-ecef-4803-b9fd-c84fc7773010"
+ "abc64ca7-1f05-46b4-936f-25ac7b9b9b33"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223505Z:d4131870-ecef-4803-b9fd-c84fc7773010"
+ "NORTHCENTRALUS:20200514T212653Z:abc64ca7-1f05-46b4-936f-25ac7b9b9b33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -885,7 +885,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:05 GMT"
+ "Thu, 14 May 2020 21:26:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -904,13 +904,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b3a6819-5bcf-4fd9-93b3-1f1762b9a999"
+ "7c147d37-9e4d-4aec-ba4b-075285e1839b"
],
"Accept-Language": [
"en-US"
@@ -930,16 +930,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11980"
],
"x-ms-request-id": [
- "c2c18a08-1d22-4ce8-bfcb-eefba127efba"
+ "cce12d8d-5e3c-423b-9ba5-8bea684eff4a"
],
"x-ms-correlation-request-id": [
- "c2c18a08-1d22-4ce8-bfcb-eefba127efba"
+ "cce12d8d-5e3c-423b-9ba5-8bea684eff4a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223505Z:c2c18a08-1d22-4ce8-bfcb-eefba127efba"
+ "NORTHCENTRALUS:20200514T212654Z:cce12d8d-5e3c-423b-9ba5-8bea684eff4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -948,7 +948,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:05 GMT"
+ "Thu, 14 May 2020 21:26:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -957,23 +957,23 @@
"-1"
],
"Content-Length": [
- "12"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:53.9973797Z\",\r\n \"duration\": \"PT3.6355321S\",\r\n \"trackingId\": \"62c99708-bfd2-46a0-a645-f315f2c3947e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82d7b852-5e15-4dd5-b268-f64a679172fe"
+ "bbb11006-846c-4905-99ee-874e5799a005"
],
"Accept-Language": [
"en-US"
@@ -993,16 +993,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11978"
],
"x-ms-request-id": [
- "e63cfd19-0d17-4691-8952-b51278512ab0"
+ "a99d806f-cb36-40b5-b9c1-7396bc3855ec"
],
"x-ms-correlation-request-id": [
- "e63cfd19-0d17-4691-8952-b51278512ab0"
+ "a99d806f-cb36-40b5-b9c1-7396bc3855ec"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223506Z:e63cfd19-0d17-4691-8952-b51278512ab0"
+ "NORTHCENTRALUS:20200514T212654Z:a99d806f-cb36-40b5-b9c1-7396bc3855ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1011,7 +1011,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:06 GMT"
+ "Thu, 14 May 2020 21:26:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1020,23 +1020,23 @@
"-1"
],
"Content-Length": [
- "12"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6bba5b77-def4-441d-9b9b-8036c9d77712"
+ "edccdbfa-e092-41c8-83a0-44064ebb591a"
],
"Accept-Language": [
"en-US"
@@ -1056,16 +1056,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11976"
],
"x-ms-request-id": [
- "3d8abdc4-6400-4859-8429-4eb8a833d758"
+ "f2be2d04-1d06-4510-a8ec-fc83c48c6194"
],
"x-ms-correlation-request-id": [
- "3d8abdc4-6400-4859-8429-4eb8a833d758"
+ "f2be2d04-1d06-4510-a8ec-fc83c48c6194"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223506Z:3d8abdc4-6400-4859-8429-4eb8a833d758"
+ "NORTHCENTRALUS:20200514T212654Z:f2be2d04-1d06-4510-a8ec-fc83c48c6194"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1074,7 +1074,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:06 GMT"
+ "Thu, 14 May 2020 21:26:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1083,23 +1083,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce172a31-770f-4fef-9490-cf1151a66c16"
+ "9394c1ab-3d5d-441a-b57a-0d008608caa3"
],
"Accept-Language": [
"en-US"
@@ -1119,16 +1119,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11974"
],
"x-ms-request-id": [
- "870ca36d-8e71-4615-89bc-045c9e9af3b5"
+ "4218c586-bc44-4955-ad49-f0a17c3622aa"
],
"x-ms-correlation-request-id": [
- "870ca36d-8e71-4615-89bc-045c9e9af3b5"
+ "4218c586-bc44-4955-ad49-f0a17c3622aa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223507Z:870ca36d-8e71-4615-89bc-045c9e9af3b5"
+ "NORTHCENTRALUS:20200514T212655Z:4218c586-bc44-4955-ad49-f0a17c3622aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1137,7 +1137,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:07 GMT"
+ "Thu, 14 May 2020 21:26:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1146,23 +1146,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c0fc3dc-b052-4895-bac4-491bcb820894"
+ "dc8214c2-2c7a-4944-9429-c6ecc029d164"
],
"Accept-Language": [
"en-US"
@@ -1182,16 +1182,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11972"
],
"x-ms-request-id": [
- "af3dcbf8-daea-467e-9cac-9315ddb1b75c"
+ "cf174a70-be67-4799-95bc-9fb7ecd35701"
],
"x-ms-correlation-request-id": [
- "af3dcbf8-daea-467e-9cac-9315ddb1b75c"
+ "cf174a70-be67-4799-95bc-9fb7ecd35701"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223507Z:af3dcbf8-daea-467e-9cac-9315ddb1b75c"
+ "NORTHCENTRALUS:20200514T212655Z:cf174a70-be67-4799-95bc-9fb7ecd35701"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1200,7 +1200,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:07 GMT"
+ "Thu, 14 May 2020 21:26:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1209,23 +1209,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70e11008-7443-441c-b45d-fb58f4954b69"
+ "eb1061a2-6137-45c8-8505-d037cc32d0b7"
],
"Accept-Language": [
"en-US"
@@ -1245,16 +1245,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11970"
],
"x-ms-request-id": [
- "cacc3786-bc8a-4c2d-b070-44bd965da162"
+ "28e6d21c-0658-4df0-8d68-ef88ff848779"
],
"x-ms-correlation-request-id": [
- "cacc3786-bc8a-4c2d-b070-44bd965da162"
+ "28e6d21c-0658-4df0-8d68-ef88ff848779"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223507Z:cacc3786-bc8a-4c2d-b070-44bd965da162"
+ "NORTHCENTRALUS:20200514T212656Z:28e6d21c-0658-4df0-8d68-ef88ff848779"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1263,7 +1263,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:07 GMT"
+ "Thu, 14 May 2020 21:26:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1272,23 +1272,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f99d3bb-1425-48c9-a6e3-2b74a6d63c7f"
+ "301fda5a-d851-4a13-a3a4-39f40fdac0c4"
],
"Accept-Language": [
"en-US"
@@ -1308,16 +1308,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11968"
],
"x-ms-request-id": [
- "aaa9a602-10d2-45a2-a04d-9a6f2e8bd2a2"
+ "123b510a-617d-44b6-b9f3-df232cdd5a60"
],
"x-ms-correlation-request-id": [
- "aaa9a602-10d2-45a2-a04d-9a6f2e8bd2a2"
+ "123b510a-617d-44b6-b9f3-df232cdd5a60"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223508Z:aaa9a602-10d2-45a2-a04d-9a6f2e8bd2a2"
+ "NORTHCENTRALUS:20200514T212656Z:123b510a-617d-44b6-b9f3-df232cdd5a60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1326,7 +1326,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:08 GMT"
+ "Thu, 14 May 2020 21:26:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1335,23 +1335,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e719264-f7eb-4240-8b78-bb260851db07"
+ "c6826516-9b8c-40fa-a215-cea3c1499e7c"
],
"Accept-Language": [
"en-US"
@@ -1371,16 +1371,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11966"
],
"x-ms-request-id": [
- "c4f23d06-ec1e-43fe-9c74-d6279657969d"
+ "8f9dad61-92c7-4402-9203-dffbfb752d33"
],
"x-ms-correlation-request-id": [
- "c4f23d06-ec1e-43fe-9c74-d6279657969d"
+ "8f9dad61-92c7-4402-9203-dffbfb752d33"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223508Z:c4f23d06-ec1e-43fe-9c74-d6279657969d"
+ "NORTHCENTRALUS:20200514T212656Z:8f9dad61-92c7-4402-9203-dffbfb752d33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1389,7 +1389,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:08 GMT"
+ "Thu, 14 May 2020 21:26:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1398,23 +1398,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fa931b6d-4c40-4b45-a973-77960a25942e"
+ "34ed02a5-12f6-4e94-a559-a63e9cc71761"
],
"Accept-Language": [
"en-US"
@@ -1434,16 +1434,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11964"
],
"x-ms-request-id": [
- "f60f4c4e-1239-41c9-b380-443e677089d5"
+ "5414e10b-5482-49b3-bb76-65f003e483a0"
],
"x-ms-correlation-request-id": [
- "f60f4c4e-1239-41c9-b380-443e677089d5"
+ "5414e10b-5482-49b3-bb76-65f003e483a0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223509Z:f60f4c4e-1239-41c9-b380-443e677089d5"
+ "NORTHCENTRALUS:20200514T212657Z:5414e10b-5482-49b3-bb76-65f003e483a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1452,7 +1452,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:09 GMT"
+ "Thu, 14 May 2020 21:26:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1461,23 +1461,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "825"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.24027Z\",\r\n \"duration\": \"PT3.8784224S\",\r\n \"trackingId\": \"ec6335f4-0626-4738-9b1e-7899b1bc0e4f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0874e63f-2e5b-4d9f-8f6f-fa6af5471a9b"
+ "56b692a3-6ac0-480b-94d5-43be65ee0db9"
],
"Accept-Language": [
"en-US"
@@ -1497,16 +1497,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "11962"
],
"x-ms-request-id": [
- "0cf4bfbf-318e-4468-bc63-b6e5e05b6db0"
+ "193a4266-ecdd-4c52-95ec-6f9e1fd1eec9"
],
"x-ms-correlation-request-id": [
- "0cf4bfbf-318e-4468-bc63-b6e5e05b6db0"
+ "193a4266-ecdd-4c52-95ec-6f9e1fd1eec9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223509Z:0cf4bfbf-318e-4468-bc63-b6e5e05b6db0"
+ "NORTHCENTRALUS:20200514T212657Z:193a4266-ecdd-4c52-95ec-6f9e1fd1eec9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1515,7 +1515,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:09 GMT"
+ "Thu, 14 May 2020 21:26:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1524,23 +1524,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5475557Z\",\r\n \"duration\": \"PT3.4194866S\",\r\n \"trackingId\": \"ca9bc412-af1c-46dc-9bcf-f08a49b6251e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.2158548Z\",\r\n \"duration\": \"PT6.8540072S\",\r\n \"trackingId\": \"c4229ff8-3b87-44a7-8f0d-49bd71eb634e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f3300f1-57db-4094-8fcd-2050f5d5c448"
+ "7097dbbf-727d-452c-8da3-c2e7de2639e9"
],
"Accept-Language": [
"en-US"
@@ -1560,16 +1560,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
+ "11960"
],
"x-ms-request-id": [
- "15edfaef-30fc-416b-92c5-c85112f575b6"
+ "dff859cc-a8b1-4217-b6cd-5818f7c6427a"
],
"x-ms-correlation-request-id": [
- "15edfaef-30fc-416b-92c5-c85112f575b6"
+ "dff859cc-a8b1-4217-b6cd-5818f7c6427a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223510Z:15edfaef-30fc-416b-92c5-c85112f575b6"
+ "NORTHCENTRALUS:20200514T212657Z:dff859cc-a8b1-4217-b6cd-5818f7c6427a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1578,7 +1578,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:09 GMT"
+ "Thu, 14 May 2020 21:26:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1587,23 +1587,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.2158548Z\",\r\n \"duration\": \"PT6.8540072S\",\r\n \"trackingId\": \"c4229ff8-3b87-44a7-8f0d-49bd71eb634e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9b077ae-b3b8-440b-8f97-7be0bc5510ad"
+ "1abecbf8-29d2-414b-8c96-4656fd3b69cf"
],
"Accept-Language": [
"en-US"
@@ -1623,16 +1623,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11958"
],
"x-ms-request-id": [
- "b1ca1d19-a9d8-4039-b9d8-6ee63eef7789"
+ "76bdb365-af86-416e-af06-c1d673738aa9"
],
"x-ms-correlation-request-id": [
- "b1ca1d19-a9d8-4039-b9d8-6ee63eef7789"
+ "76bdb365-af86-416e-af06-c1d673738aa9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223510Z:b1ca1d19-a9d8-4039-b9d8-6ee63eef7789"
+ "NORTHCENTRALUS:20200514T212658Z:76bdb365-af86-416e-af06-c1d673738aa9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1641,7 +1641,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:10 GMT"
+ "Thu, 14 May 2020 21:26:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1650,23 +1650,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.2158548Z\",\r\n \"duration\": \"PT6.8540072S\",\r\n \"trackingId\": \"c4229ff8-3b87-44a7-8f0d-49bd71eb634e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c7143ff7-5557-432b-bf47-75c546e11f84"
+ "d4bb8671-cde4-4253-a4b4-8e0c02870f7b"
],
"Accept-Language": [
"en-US"
@@ -1686,16 +1686,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11956"
],
"x-ms-request-id": [
- "f0983ad5-f37c-4981-8c9b-4eb54bb861a8"
+ "a5e2fa65-0ec6-457f-aa2b-efdf372ad833"
],
"x-ms-correlation-request-id": [
- "f0983ad5-f37c-4981-8c9b-4eb54bb861a8"
+ "a5e2fa65-0ec6-457f-aa2b-efdf372ad833"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223510Z:f0983ad5-f37c-4981-8c9b-4eb54bb861a8"
+ "NORTHCENTRALUS:20200514T212658Z:a5e2fa65-0ec6-457f-aa2b-efdf372ad833"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1704,7 +1704,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:10 GMT"
+ "Thu, 14 May 2020 21:26:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1713,23 +1713,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.2158548Z\",\r\n \"duration\": \"PT6.8540072S\",\r\n \"trackingId\": \"c4229ff8-3b87-44a7-8f0d-49bd71eb634e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "181cf28f-1fc7-4b36-9aeb-17f3991be547"
+ "a4c66bed-0d1a-412e-9841-db355ec8a617"
],
"Accept-Language": [
"en-US"
@@ -1749,16 +1749,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "11954"
],
"x-ms-request-id": [
- "d7af4875-2b82-4706-ab39-36cc8f8bc04d"
+ "6a51fc07-27c3-4c82-98dd-3f9ddbf2fc16"
],
"x-ms-correlation-request-id": [
- "d7af4875-2b82-4706-ab39-36cc8f8bc04d"
+ "6a51fc07-27c3-4c82-98dd-3f9ddbf2fc16"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223511Z:d7af4875-2b82-4706-ab39-36cc8f8bc04d"
+ "NORTHCENTRALUS:20200514T212659Z:6a51fc07-27c3-4c82-98dd-3f9ddbf2fc16"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1767,7 +1767,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:11 GMT"
+ "Thu, 14 May 2020 21:26:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1776,23 +1776,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.2158548Z\",\r\n \"duration\": \"PT6.8540072S\",\r\n \"trackingId\": \"c4229ff8-3b87-44a7-8f0d-49bd71eb634e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "faaf9ef6-e47d-4640-bb39-0ae57b8bf343"
+ "a4b028dd-2717-4c58-8ebf-bdb184a8f75d"
],
"Accept-Language": [
"en-US"
@@ -1812,16 +1812,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11952"
],
"x-ms-request-id": [
- "0b1f18fe-8198-4c4c-ab00-ca3dacd78a23"
+ "7bc56c9c-3dad-4688-914c-95276c933abe"
],
"x-ms-correlation-request-id": [
- "0b1f18fe-8198-4c4c-ab00-ca3dacd78a23"
+ "7bc56c9c-3dad-4688-914c-95276c933abe"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223511Z:0b1f18fe-8198-4c4c-ab00-ca3dacd78a23"
+ "NORTHCENTRALUS:20200514T212659Z:7bc56c9c-3dad-4688-914c-95276c933abe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:11 GMT"
+ "Thu, 14 May 2020 21:26:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1839,23 +1839,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.2158548Z\",\r\n \"duration\": \"PT6.8540072S\",\r\n \"trackingId\": \"c4229ff8-3b87-44a7-8f0d-49bd71eb634e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "208b1f6c-a157-4c93-a74e-d0cd9514856e"
+ "4d9a770b-f49f-4bd7-9d4a-360df5978730"
],
"Accept-Language": [
"en-US"
@@ -1875,16 +1875,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
+ "11950"
],
"x-ms-request-id": [
- "0d1a6b14-d20d-4a3a-acf5-73b1e8d5d80f"
+ "74b29504-739c-458c-a3db-96094147b678"
],
"x-ms-correlation-request-id": [
- "0d1a6b14-d20d-4a3a-acf5-73b1e8d5d80f"
+ "74b29504-739c-458c-a3db-96094147b678"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223512Z:0d1a6b14-d20d-4a3a-acf5-73b1e8d5d80f"
+ "NORTHCENTRALUS:20200514T212700Z:74b29504-739c-458c-a3db-96094147b678"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1893,7 +1893,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:12 GMT"
+ "Thu, 14 May 2020 21:26:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1902,23 +1902,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "827"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.2158548Z\",\r\n \"duration\": \"PT6.8540072S\",\r\n \"trackingId\": \"c4229ff8-3b87-44a7-8f0d-49bd71eb634e\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8564bfaa-e845-4ec9-be17-35fe781577f0"
+ "4e5ac429-eb21-4bbc-96cc-635a1a200200"
],
"Accept-Language": [
"en-US"
@@ -1938,16 +1938,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11948"
],
"x-ms-request-id": [
- "389b99be-7716-4419-9fe1-e1651be85a9e"
+ "86d69b82-7f3c-4419-ad86-e98c8dd74537"
],
"x-ms-correlation-request-id": [
- "389b99be-7716-4419-9fe1-e1651be85a9e"
+ "86d69b82-7f3c-4419-ad86-e98c8dd74537"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223512Z:389b99be-7716-4419-9fe1-e1651be85a9e"
+ "NORTHCENTRALUS:20200514T212700Z:86d69b82-7f3c-4419-ad86-e98c8dd74537"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1956,7 +1956,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:12 GMT"
+ "Thu, 14 May 2020 21:27:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1971,17 +1971,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a76a04a4-8d6c-41c0-ac0d-e69ead457526"
+ "6e782d75-6390-4594-ab42-a73553e15b02"
],
"Accept-Language": [
"en-US"
@@ -2001,16 +2001,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
+ "11946"
],
"x-ms-request-id": [
- "52eec722-a9e1-4ced-b1a5-ed444d470e25"
+ "1171be58-b783-4ba1-bc01-cc667e5dbf6d"
],
"x-ms-correlation-request-id": [
- "52eec722-a9e1-4ced-b1a5-ed444d470e25"
+ "1171be58-b783-4ba1-bc01-cc667e5dbf6d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223513Z:52eec722-a9e1-4ced-b1a5-ed444d470e25"
+ "NORTHCENTRALUS:20200514T212700Z:1171be58-b783-4ba1-bc01-cc667e5dbf6d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2019,7 +2019,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:12 GMT"
+ "Thu, 14 May 2020 21:27:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2034,17 +2034,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5cbd7687-8bfb-4a83-8132-7b9017521983"
+ "575ddc94-5edb-4d1b-9ae7-4f4984938cf3"
],
"Accept-Language": [
"en-US"
@@ -2064,16 +2064,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
+ "11944"
],
"x-ms-request-id": [
- "ea97b19f-4a60-48b2-beab-b842ab653b41"
+ "9ee74ca5-0b42-464c-8702-f4667fc60833"
],
"x-ms-correlation-request-id": [
- "ea97b19f-4a60-48b2-beab-b842ab653b41"
+ "9ee74ca5-0b42-464c-8702-f4667fc60833"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223513Z:ea97b19f-4a60-48b2-beab-b842ab653b41"
+ "NORTHCENTRALUS:20200514T212701Z:9ee74ca5-0b42-464c-8702-f4667fc60833"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2082,7 +2082,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:13 GMT"
+ "Thu, 14 May 2020 21:27:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2097,17 +2097,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07118c3b-6d14-49b3-b200-e27dd0c846a0"
+ "c25fce61-029d-4c39-8f9a-d0fcddd3c62f"
],
"Accept-Language": [
"en-US"
@@ -2127,16 +2127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
+ "11942"
],
"x-ms-request-id": [
- "26920434-28e0-454d-8d81-7302c7f6a10d"
+ "c95f9f78-8f0b-42ca-99f2-d48eced302c0"
],
"x-ms-correlation-request-id": [
- "26920434-28e0-454d-8d81-7302c7f6a10d"
+ "c95f9f78-8f0b-42ca-99f2-d48eced302c0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223513Z:26920434-28e0-454d-8d81-7302c7f6a10d"
+ "NORTHCENTRALUS:20200514T212701Z:c95f9f78-8f0b-42ca-99f2-d48eced302c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2145,7 +2145,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:13 GMT"
+ "Thu, 14 May 2020 21:27:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2160,17 +2160,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7383984Z\",\r\n \"duration\": \"PT6.6103293S\",\r\n \"trackingId\": \"e808a480-42d2-49f0-a7f9-fe25418b2d49\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc2a4e7e-9809-432a-a3e9-346bf44c3a78"
+ "ffb22ebf-f24b-44a3-9770-408cd284a229"
],
"Accept-Language": [
"en-US"
@@ -2190,16 +2190,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
+ "11940"
],
"x-ms-request-id": [
- "5448af7f-6e02-4714-a396-c6e5adecaee5"
+ "fb7fee45-e634-4f5c-9f98-59f194bde314"
],
"x-ms-correlation-request-id": [
- "5448af7f-6e02-4714-a396-c6e5adecaee5"
+ "fb7fee45-e634-4f5c-9f98-59f194bde314"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223514Z:5448af7f-6e02-4714-a396-c6e5adecaee5"
+ "NORTHCENTRALUS:20200514T212702Z:fb7fee45-e634-4f5c-9f98-59f194bde314"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2208,7 +2208,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:14 GMT"
+ "Thu, 14 May 2020 21:27:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2217,23 +2217,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "900a224e-cc85-4c49-8c73-c61c19b25ee9"
+ "612a0f88-6fd5-40ea-8004-73384a63fada"
],
"Accept-Language": [
"en-US"
@@ -2253,16 +2253,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11938"
],
"x-ms-request-id": [
- "349bbb93-15b6-475f-9a22-bed7cd8856ea"
+ "3abd6ef5-9ad4-40a0-a868-26e83d0fd5e4"
],
"x-ms-correlation-request-id": [
- "349bbb93-15b6-475f-9a22-bed7cd8856ea"
+ "3abd6ef5-9ad4-40a0-a868-26e83d0fd5e4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223514Z:349bbb93-15b6-475f-9a22-bed7cd8856ea"
+ "NORTHCENTRALUS:20200514T212702Z:3abd6ef5-9ad4-40a0-a868-26e83d0fd5e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2271,7 +2271,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:14 GMT"
+ "Thu, 14 May 2020 21:27:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2280,23 +2280,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fbcea3e0-43c2-4a3a-a3ca-105a009f4f1c"
+ "5b0b6eaf-0914-4a65-ae89-e6af770d2eff"
],
"Accept-Language": [
"en-US"
@@ -2316,16 +2316,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11937"
+ "11936"
],
"x-ms-request-id": [
- "0486c451-29e4-47b7-80e6-7a93af55e55c"
+ "5f4546b2-ed5e-4467-9bf2-66765253a43a"
],
"x-ms-correlation-request-id": [
- "0486c451-29e4-47b7-80e6-7a93af55e55c"
+ "5f4546b2-ed5e-4467-9bf2-66765253a43a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223515Z:0486c451-29e4-47b7-80e6-7a93af55e55c"
+ "NORTHCENTRALUS:20200514T212703Z:5f4546b2-ed5e-4467-9bf2-66765253a43a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2334,7 +2334,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:14 GMT"
+ "Thu, 14 May 2020 21:27:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2343,23 +2343,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ace30570-9e4a-4812-b379-44356aa73411"
+ "ef163c4f-9297-47db-97c4-47bfab6332d4"
],
"Accept-Language": [
"en-US"
@@ -2379,16 +2379,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11934"
],
"x-ms-request-id": [
- "32ee6252-2c15-4d97-82f6-64136153cfe9"
+ "6c5dd974-5fd0-4788-b0d3-0a8659615204"
],
"x-ms-correlation-request-id": [
- "32ee6252-2c15-4d97-82f6-64136153cfe9"
+ "6c5dd974-5fd0-4788-b0d3-0a8659615204"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223515Z:32ee6252-2c15-4d97-82f6-64136153cfe9"
+ "NORTHCENTRALUS:20200514T212703Z:6c5dd974-5fd0-4788-b0d3-0a8659615204"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2397,7 +2397,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:15 GMT"
+ "Thu, 14 May 2020 21:27:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2406,23 +2406,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7706a431-027d-42b5-909c-95b09ade9ce7"
+ "891c845e-5698-4619-90ed-5861e9df6061"
],
"Accept-Language": [
"en-US"
@@ -2442,16 +2442,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11932"
],
"x-ms-request-id": [
- "83d57a32-4d37-42c8-91ae-da033382fcb1"
+ "e8cd7cbd-185b-46e3-be39-cf1c0df472a6"
],
"x-ms-correlation-request-id": [
- "83d57a32-4d37-42c8-91ae-da033382fcb1"
+ "e8cd7cbd-185b-46e3-be39-cf1c0df472a6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223515Z:83d57a32-4d37-42c8-91ae-da033382fcb1"
+ "NORTHCENTRALUS:20200514T212703Z:e8cd7cbd-185b-46e3-be39-cf1c0df472a6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2460,7 +2460,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:15 GMT"
+ "Thu, 14 May 2020 21:27:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2469,23 +2469,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "add2fb56-5eb6-47ea-befd-96c828c77226"
+ "56dd8938-bdbe-4071-9a79-cb46ef0e5085"
],
"Accept-Language": [
"en-US"
@@ -2505,16 +2505,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
+ "11930"
],
"x-ms-request-id": [
- "e8c4c01a-d8c2-4d53-9528-b0bad6a032b9"
+ "e62f153e-6d50-40d3-be91-a40ab532c78c"
],
"x-ms-correlation-request-id": [
- "e8c4c01a-d8c2-4d53-9528-b0bad6a032b9"
+ "e62f153e-6d50-40d3-be91-a40ab532c78c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223516Z:e8c4c01a-d8c2-4d53-9528-b0bad6a032b9"
+ "NORTHCENTRALUS:20200514T212704Z:e62f153e-6d50-40d3-be91-a40ab532c78c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2523,7 +2523,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:16 GMT"
+ "Thu, 14 May 2020 21:27:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2532,23 +2532,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3f1bfb1-b550-4719-93f3-b786185fa062"
+ "81b731f0-f407-48fd-a805-0aca84e74e12"
],
"Accept-Language": [
"en-US"
@@ -2568,16 +2568,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
+ "11928"
],
"x-ms-request-id": [
- "57d7cd39-125f-421b-aa68-001612701be1"
+ "0f98dc2b-d552-4b22-b0c5-3ca26d3121b6"
],
"x-ms-correlation-request-id": [
- "57d7cd39-125f-421b-aa68-001612701be1"
+ "0f98dc2b-d552-4b22-b0c5-3ca26d3121b6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223516Z:57d7cd39-125f-421b-aa68-001612701be1"
+ "NORTHCENTRALUS:20200514T212704Z:0f98dc2b-d552-4b22-b0c5-3ca26d3121b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2586,7 +2586,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:16 GMT"
+ "Thu, 14 May 2020 21:27:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2595,23 +2595,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9075fd79-e3f5-46b9-a63b-23737b11bb31"
+ "09b3714d-1cd2-4145-9a7c-d86963095bd6"
],
"Accept-Language": [
"en-US"
@@ -2631,16 +2631,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11927"
+ "11926"
],
"x-ms-request-id": [
- "a424e742-5e93-41a6-9d4c-263e3da81109"
+ "41a024de-7e1c-4f29-b56e-05b4b219582d"
],
"x-ms-correlation-request-id": [
- "a424e742-5e93-41a6-9d4c-263e3da81109"
+ "41a024de-7e1c-4f29-b56e-05b4b219582d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223517Z:a424e742-5e93-41a6-9d4c-263e3da81109"
+ "NORTHCENTRALUS:20200514T212705Z:41a024de-7e1c-4f29-b56e-05b4b219582d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2649,7 +2649,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:17 GMT"
+ "Thu, 14 May 2020 21:27:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2658,23 +2658,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f08f774-10da-49ad-b3bb-3c228d8e1eac"
+ "ab7f32d9-bca5-47be-90a0-d9d2d7c415e8"
],
"Accept-Language": [
"en-US"
@@ -2694,16 +2694,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11925"
+ "11924"
],
"x-ms-request-id": [
- "48f7e268-f3ab-45d0-a05f-dd937e1607ed"
+ "b0b2edc1-587c-4b00-ac1e-6246b410600d"
],
"x-ms-correlation-request-id": [
- "48f7e268-f3ab-45d0-a05f-dd937e1607ed"
+ "b0b2edc1-587c-4b00-ac1e-6246b410600d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223517Z:48f7e268-f3ab-45d0-a05f-dd937e1607ed"
+ "NORTHCENTRALUS:20200514T212705Z:b0b2edc1-587c-4b00-ac1e-6246b410600d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2712,7 +2712,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:17 GMT"
+ "Thu, 14 May 2020 21:27:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2721,23 +2721,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3688824Z\",\r\n \"duration\": \"PT10.0070348S\",\r\n \"trackingId\": \"d86ec695-edf4-4788-af3a-a9097c349ccb\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ffdbc7c-8792-4124-941f-c6de0668cda0"
+ "4c3bbc36-d6c2-430c-9ba3-f53ee983313a"
],
"Accept-Language": [
"en-US"
@@ -2757,16 +2757,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11923"
+ "11922"
],
"x-ms-request-id": [
- "6cb0bc26-e26f-4c08-bad8-4f4d5850abdb"
+ "e07c1647-6f50-4fb2-94bb-61cfb302c002"
],
"x-ms-correlation-request-id": [
- "6cb0bc26-e26f-4c08-bad8-4f4d5850abdb"
+ "e07c1647-6f50-4fb2-94bb-61cfb302c002"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223518Z:6cb0bc26-e26f-4c08-bad8-4f4d5850abdb"
+ "NORTHCENTRALUS:20200514T212706Z:e07c1647-6f50-4fb2-94bb-61cfb302c002"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2775,7 +2775,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:17 GMT"
+ "Thu, 14 May 2020 21:27:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2784,23 +2784,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6719f90-bc68-4c94-b897-78e1c5e0ec00"
+ "ff9f0c9f-e5b0-437c-bcfb-cd531cf84b3f"
],
"Accept-Language": [
"en-US"
@@ -2820,16 +2820,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11921"
+ "11920"
],
"x-ms-request-id": [
- "32108fcf-7f5d-44e7-be26-85ece2f91acf"
+ "b491cd48-03c9-4e77-96c6-e7cae70b8b96"
],
"x-ms-correlation-request-id": [
- "32108fcf-7f5d-44e7-be26-85ece2f91acf"
+ "b491cd48-03c9-4e77-96c6-e7cae70b8b96"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223518Z:32108fcf-7f5d-44e7-be26-85ece2f91acf"
+ "NORTHCENTRALUS:20200514T212706Z:b491cd48-03c9-4e77-96c6-e7cae70b8b96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2838,7 +2838,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:18 GMT"
+ "Thu, 14 May 2020 21:27:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2847,23 +2847,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a853d55d-ac75-4f4e-9302-a8f3538acec7"
+ "b9c8227f-de0e-4913-98f1-0b0d8713e873"
],
"Accept-Language": [
"en-US"
@@ -2883,16 +2883,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11919"
+ "11918"
],
"x-ms-request-id": [
- "ce6a1342-0431-4938-b8e7-cd7989777b67"
+ "b157a8ba-3f87-4aa7-a15f-ddf68786241e"
],
"x-ms-correlation-request-id": [
- "ce6a1342-0431-4938-b8e7-cd7989777b67"
+ "b157a8ba-3f87-4aa7-a15f-ddf68786241e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223518Z:ce6a1342-0431-4938-b8e7-cd7989777b67"
+ "NORTHCENTRALUS:20200514T212706Z:b157a8ba-3f87-4aa7-a15f-ddf68786241e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2901,7 +2901,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:18 GMT"
+ "Thu, 14 May 2020 21:27:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2910,23 +2910,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.9725095Z\",\r\n \"duration\": \"PT10.8444404S\",\r\n \"trackingId\": \"53f91739-4a2c-4007-bc34-6b9d68c64720\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "064ab9c3-d917-4ec2-a304-c0f7982fb24c"
+ "54082fe9-4b25-40c7-aac0-9bb14ec1cf77"
],
"Accept-Language": [
"en-US"
@@ -2946,16 +2946,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11917"
+ "11916"
],
"x-ms-request-id": [
- "840e841b-6b51-4974-a9da-2af66c66cfcc"
+ "67825fb7-1880-4b36-9c3a-1fd0c85eda43"
],
"x-ms-correlation-request-id": [
- "840e841b-6b51-4974-a9da-2af66c66cfcc"
+ "67825fb7-1880-4b36-9c3a-1fd0c85eda43"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223519Z:840e841b-6b51-4974-a9da-2af66c66cfcc"
+ "NORTHCENTRALUS:20200514T212707Z:67825fb7-1880-4b36-9c3a-1fd0c85eda43"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2964,7 +2964,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:19 GMT"
+ "Thu, 14 May 2020 21:27:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2979,17 +2979,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2aa67158-8d9e-4fe8-b451-bdf28de999e3"
+ "61e873d4-6062-4b5e-a210-258b631b3e14"
],
"Accept-Language": [
"en-US"
@@ -3009,16 +3009,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11915"
+ "11914"
],
"x-ms-request-id": [
- "1555e788-1091-46fb-b0d3-b8fc7134710e"
+ "9d1e0583-c171-4fb7-ba5b-ece58b6712ad"
],
"x-ms-correlation-request-id": [
- "1555e788-1091-46fb-b0d3-b8fc7134710e"
+ "9d1e0583-c171-4fb7-ba5b-ece58b6712ad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223519Z:1555e788-1091-46fb-b0d3-b8fc7134710e"
+ "NORTHCENTRALUS:20200514T212707Z:9d1e0583-c171-4fb7-ba5b-ece58b6712ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3027,7 +3027,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:19 GMT"
+ "Thu, 14 May 2020 21:27:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3042,17 +3042,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a41b231-fcdb-4000-a1e3-bf987882f00c"
+ "f491e322-6225-4cd8-9a58-0c09b2d6cd69"
],
"Accept-Language": [
"en-US"
@@ -3072,16 +3072,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11913"
+ "11912"
],
"x-ms-request-id": [
- "cdb5c887-2152-4782-a411-151cdc4cf65b"
+ "3ad1d57c-3b45-4e53-acd0-10d966d1ff65"
],
"x-ms-correlation-request-id": [
- "cdb5c887-2152-4782-a411-151cdc4cf65b"
+ "3ad1d57c-3b45-4e53-acd0-10d966d1ff65"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223520Z:cdb5c887-2152-4782-a411-151cdc4cf65b"
+ "NORTHCENTRALUS:20200514T212708Z:3ad1d57c-3b45-4e53-acd0-10d966d1ff65"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3090,7 +3090,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:19 GMT"
+ "Thu, 14 May 2020 21:27:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3105,17 +3105,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c96ecd0-9427-49c4-ba78-358a28f70714"
+ "be9316b2-06bb-40d4-b796-52a4e6fa4353"
],
"Accept-Language": [
"en-US"
@@ -3135,16 +3135,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11911"
+ "11910"
],
"x-ms-request-id": [
- "e1a2c158-9d6e-42b0-a5b3-2d13d23c405d"
+ "e8e1f1c5-9aae-4a0a-a90f-a2104b34b01f"
],
"x-ms-correlation-request-id": [
- "e1a2c158-9d6e-42b0-a5b3-2d13d23c405d"
+ "e8e1f1c5-9aae-4a0a-a90f-a2104b34b01f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223520Z:e1a2c158-9d6e-42b0-a5b3-2d13d23c405d"
+ "NORTHCENTRALUS:20200514T212708Z:e8e1f1c5-9aae-4a0a-a90f-a2104b34b01f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3153,7 +3153,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:20 GMT"
+ "Thu, 14 May 2020 21:27:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3168,17 +3168,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2842e8b5-230e-4bf6-addb-2674a0724ca1"
+ "488693fb-6c96-4c7f-bdd4-b87420fe1f34"
],
"Accept-Language": [
"en-US"
@@ -3198,16 +3198,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11909"
+ "11908"
],
"x-ms-request-id": [
- "59565013-3317-46c5-9e1b-3c0c958b651d"
+ "1b8c94a0-b51f-4b21-ac64-8acd75363719"
],
"x-ms-correlation-request-id": [
- "59565013-3317-46c5-9e1b-3c0c958b651d"
+ "1b8c94a0-b51f-4b21-ac64-8acd75363719"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223521Z:59565013-3317-46c5-9e1b-3c0c958b651d"
+ "NORTHCENTRALUS:20200514T212709Z:1b8c94a0-b51f-4b21-ac64-8acd75363719"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3216,7 +3216,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:20 GMT"
+ "Thu, 14 May 2020 21:27:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3231,17 +3231,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4062fb40-3036-4b95-bbfa-abbf60ebb48f"
+ "4b9a352e-fd3c-4a6c-84f8-8080e55d9666"
],
"Accept-Language": [
"en-US"
@@ -3261,16 +3261,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11907"
+ "11906"
],
"x-ms-request-id": [
- "dde97a0e-f88c-4fd3-8618-e35cbed19628"
+ "55a4a510-2e04-41c4-ae7c-f4438ef99281"
],
"x-ms-correlation-request-id": [
- "dde97a0e-f88c-4fd3-8618-e35cbed19628"
+ "55a4a510-2e04-41c4-ae7c-f4438ef99281"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223521Z:dde97a0e-f88c-4fd3-8618-e35cbed19628"
+ "NORTHCENTRALUS:20200514T212709Z:55a4a510-2e04-41c4-ae7c-f4438ef99281"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3279,7 +3279,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:21 GMT"
+ "Thu, 14 May 2020 21:27:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3294,17 +3294,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a378298-a6d1-438a-bf20-ffafe39811f0"
+ "3209256b-46fb-47bb-a9f9-0bdc089a71d4"
],
"Accept-Language": [
"en-US"
@@ -3324,16 +3324,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11905"
+ "11904"
],
"x-ms-request-id": [
- "502df41d-8e91-4d67-8e2e-52239f0ef089"
+ "105373f2-6762-46d0-ba34-ec348666e9c6"
],
"x-ms-correlation-request-id": [
- "502df41d-8e91-4d67-8e2e-52239f0ef089"
+ "105373f2-6762-46d0-ba34-ec348666e9c6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223521Z:502df41d-8e91-4d67-8e2e-52239f0ef089"
+ "NORTHCENTRALUS:20200514T212709Z:105373f2-6762-46d0-ba34-ec348666e9c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3342,7 +3342,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:21 GMT"
+ "Thu, 14 May 2020 21:27:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3357,17 +3357,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "464497b4-2cfa-47e0-8c16-9e9520c98dd1"
+ "76cebc69-2808-4e5b-9af0-9dd28b0cfd58"
],
"Accept-Language": [
"en-US"
@@ -3387,16 +3387,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11903"
+ "11902"
],
"x-ms-request-id": [
- "eb9c2d69-c700-47bb-892e-aa34e336a9b7"
+ "1b98e48e-93a6-47b5-8ef7-d86bc6de9e3e"
],
"x-ms-correlation-request-id": [
- "eb9c2d69-c700-47bb-892e-aa34e336a9b7"
+ "1b98e48e-93a6-47b5-8ef7-d86bc6de9e3e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223522Z:eb9c2d69-c700-47bb-892e-aa34e336a9b7"
+ "NORTHCENTRALUS:20200514T212710Z:1b98e48e-93a6-47b5-8ef7-d86bc6de9e3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3405,7 +3405,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:22 GMT"
+ "Thu, 14 May 2020 21:27:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3420,17 +3420,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b017834c-965b-4e9b-8db3-34fd2f14946c"
+ "ceb8947e-d25f-401d-844e-3ba6dac96197"
],
"Accept-Language": [
"en-US"
@@ -3450,16 +3450,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11901"
+ "11900"
],
"x-ms-request-id": [
- "303fadfd-0f53-4cc7-bbd8-9e54785e0fa6"
+ "0928407a-6ff4-4860-be47-c50e6faae336"
],
"x-ms-correlation-request-id": [
- "303fadfd-0f53-4cc7-bbd8-9e54785e0fa6"
+ "0928407a-6ff4-4860-be47-c50e6faae336"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223522Z:303fadfd-0f53-4cc7-bbd8-9e54785e0fa6"
+ "NORTHCENTRALUS:20200514T212710Z:0928407a-6ff4-4860-be47-c50e6faae336"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3468,7 +3468,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:22 GMT"
+ "Thu, 14 May 2020 21:27:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3483,17 +3483,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b47514d-0a75-4553-bbff-12add23d5e5c"
+ "41bb7a86-7568-404c-93b6-b001bfffa190"
],
"Accept-Language": [
"en-US"
@@ -3513,16 +3513,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11899"
+ "11898"
],
"x-ms-request-id": [
- "5365ac58-b4d8-415c-8552-b798387c02e7"
+ "7305624a-9ec8-47ba-8d21-00973f618bd3"
],
"x-ms-correlation-request-id": [
- "5365ac58-b4d8-415c-8552-b798387c02e7"
+ "7305624a-9ec8-47ba-8d21-00973f618bd3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223523Z:5365ac58-b4d8-415c-8552-b798387c02e7"
+ "NORTHCENTRALUS:20200514T212711Z:7305624a-9ec8-47ba-8d21-00973f618bd3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3531,7 +3531,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:22 GMT"
+ "Thu, 14 May 2020 21:27:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3546,17 +3546,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4cd0715a-ba5f-4f79-88cf-ef96a0862c2d"
+ "48ea695c-e627-4414-8e86-b81742c15458"
],
"Accept-Language": [
"en-US"
@@ -3576,16 +3576,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11897"
+ "11896"
],
"x-ms-request-id": [
- "cc3312d8-ef13-4c7f-83a0-e85d2425b380"
+ "26c5de4d-13d9-436c-8a40-c571fd81b65e"
],
"x-ms-correlation-request-id": [
- "cc3312d8-ef13-4c7f-83a0-e85d2425b380"
+ "26c5de4d-13d9-436c-8a40-c571fd81b65e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223523Z:cc3312d8-ef13-4c7f-83a0-e85d2425b380"
+ "NORTHCENTRALUS:20200514T212711Z:26c5de4d-13d9-436c-8a40-c571fd81b65e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3594,7 +3594,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:23 GMT"
+ "Thu, 14 May 2020 21:27:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3609,17 +3609,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d7c7cab3-df8f-4fc0-9a1a-d17ee481b64c"
+ "e872cad4-7a4d-467c-88c3-e93ff07ba25c"
],
"Accept-Language": [
"en-US"
@@ -3639,16 +3639,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11895"
+ "11894"
],
"x-ms-request-id": [
- "aa420c43-6ba0-4ddf-b20b-942d870e3161"
+ "b32cc29c-4278-4a49-9495-3106e8bca282"
],
"x-ms-correlation-request-id": [
- "aa420c43-6ba0-4ddf-b20b-942d870e3161"
+ "b32cc29c-4278-4a49-9495-3106e8bca282"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223523Z:aa420c43-6ba0-4ddf-b20b-942d870e3161"
+ "NORTHCENTRALUS:20200514T212712Z:b32cc29c-4278-4a49-9495-3106e8bca282"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3657,7 +3657,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:23 GMT"
+ "Thu, 14 May 2020 21:27:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3672,17 +3672,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8729871Z\",\r\n \"duration\": \"PT15.744918S\",\r\n \"trackingId\": \"7b8311f6-5a41-4530-861d-5c7239f2dc6a\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ac75999-ed80-4d5f-bb7f-497c5663360a"
+ "874aa676-00a4-4c1f-a929-91f62db01f4f"
],
"Accept-Language": [
"en-US"
@@ -3702,16 +3702,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11893"
+ "11892"
],
"x-ms-request-id": [
- "fa4ef533-9397-44a7-9afd-8bcc8e0b466f"
+ "d011872b-efdd-49fd-9932-15cbda46ea82"
],
"x-ms-correlation-request-id": [
- "fa4ef533-9397-44a7-9afd-8bcc8e0b466f"
+ "d011872b-efdd-49fd-9932-15cbda46ea82"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223524Z:fa4ef533-9397-44a7-9afd-8bcc8e0b466f"
+ "NORTHCENTRALUS:20200514T212712Z:d011872b-efdd-49fd-9932-15cbda46ea82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3720,7 +3720,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:24 GMT"
+ "Thu, 14 May 2020 21:27:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3729,23 +3729,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "230df709-bf81-4ede-a979-8dc637aa2f67"
+ "3c9e41f8-2731-435e-9369-4047c3bcaa2b"
],
"Accept-Language": [
"en-US"
@@ -3765,16 +3765,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11891"
+ "11890"
],
"x-ms-request-id": [
- "b509807b-af19-45b7-8e2f-c962313474ac"
+ "e1d4dce0-ad3e-4e9d-9844-09a0c81354de"
],
"x-ms-correlation-request-id": [
- "b509807b-af19-45b7-8e2f-c962313474ac"
+ "e1d4dce0-ad3e-4e9d-9844-09a0c81354de"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223524Z:b509807b-af19-45b7-8e2f-c962313474ac"
+ "NORTHCENTRALUS:20200514T212712Z:e1d4dce0-ad3e-4e9d-9844-09a0c81354de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3783,7 +3783,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:24 GMT"
+ "Thu, 14 May 2020 21:27:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3792,23 +3792,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.9335972Z\",\r\n \"duration\": \"PT15.5717496S\",\r\n \"trackingId\": \"b194b270-953c-4100-ba12-3f4a2439da13\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "094ce4e4-9453-4520-86a9-054fb702f20e"
+ "19c6e2b5-f190-47b1-81b2-9510beb2d6b0"
],
"Accept-Language": [
"en-US"
@@ -3828,16 +3828,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11889"
+ "11888"
],
"x-ms-request-id": [
- "184fb871-d785-4404-a41f-ee3a31308454"
+ "b55bf986-5d82-4e45-909e-71473a9799c4"
],
"x-ms-correlation-request-id": [
- "184fb871-d785-4404-a41f-ee3a31308454"
+ "b55bf986-5d82-4e45-909e-71473a9799c4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223525Z:184fb871-d785-4404-a41f-ee3a31308454"
+ "NORTHCENTRALUS:20200514T212713Z:b55bf986-5d82-4e45-909e-71473a9799c4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3846,7 +3846,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:24 GMT"
+ "Thu, 14 May 2020 21:27:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3855,23 +3855,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5bd330a5-85a6-4c06-8867-c3e805c4d02a"
+ "060db5e2-ac05-4140-a042-7ed150a50d16"
],
"Accept-Language": [
"en-US"
@@ -3891,16 +3891,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11887"
+ "11886"
],
"x-ms-request-id": [
- "e9f4e47d-442d-42b1-9793-c76624656afd"
+ "1f44cf45-cf89-4e60-a3be-c29b870a9a92"
],
"x-ms-correlation-request-id": [
- "e9f4e47d-442d-42b1-9793-c76624656afd"
+ "1f44cf45-cf89-4e60-a3be-c29b870a9a92"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223525Z:e9f4e47d-442d-42b1-9793-c76624656afd"
+ "NORTHCENTRALUS:20200514T212713Z:1f44cf45-cf89-4e60-a3be-c29b870a9a92"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3909,7 +3909,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:25 GMT"
+ "Thu, 14 May 2020 21:27:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3918,23 +3918,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c86f437-7acc-4fc1-a176-28c7deaabbc9"
+ "5a12c9c9-110c-48be-9c81-0b9e8884358e"
],
"Accept-Language": [
"en-US"
@@ -3954,16 +3954,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11885"
+ "11884"
],
"x-ms-request-id": [
- "460eb48e-5ad5-4e1c-86fb-06732b5dd908"
+ "531cb67a-bfc0-4937-a90b-8b16388e1b36"
],
"x-ms-correlation-request-id": [
- "460eb48e-5ad5-4e1c-86fb-06732b5dd908"
+ "531cb67a-bfc0-4937-a90b-8b16388e1b36"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223526Z:460eb48e-5ad5-4e1c-86fb-06732b5dd908"
+ "NORTHCENTRALUS:20200514T212714Z:531cb67a-bfc0-4937-a90b-8b16388e1b36"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3972,7 +3972,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:25 GMT"
+ "Thu, 14 May 2020 21:27:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3981,23 +3981,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7116a9a3-827c-4a0e-8a47-d18845fe5801"
+ "4085a159-5159-48a9-83e2-336be1d37426"
],
"Accept-Language": [
"en-US"
@@ -4017,16 +4017,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11883"
+ "11882"
],
"x-ms-request-id": [
- "76065607-9c6f-4ba2-94a3-c633d6c287e7"
+ "7f8ede35-6817-42c1-8305-2231e677b4ad"
],
"x-ms-correlation-request-id": [
- "76065607-9c6f-4ba2-94a3-c633d6c287e7"
+ "7f8ede35-6817-42c1-8305-2231e677b4ad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223526Z:76065607-9c6f-4ba2-94a3-c633d6c287e7"
+ "NORTHCENTRALUS:20200514T212714Z:7f8ede35-6817-42c1-8305-2231e677b4ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4035,7 +4035,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:26 GMT"
+ "Thu, 14 May 2020 21:27:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4044,23 +4044,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3873f159-0955-4d55-aaba-b102d9f0eec2"
+ "a8b139bc-6d17-41b1-b1a5-0b4c4c42acb3"
],
"Accept-Language": [
"en-US"
@@ -4080,16 +4080,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11881"
+ "11880"
],
"x-ms-request-id": [
- "e8aab3dc-8f6d-4498-9c08-d3f5bc60d22b"
+ "d23e52b8-3e76-4fe1-a058-0e6c69972858"
],
"x-ms-correlation-request-id": [
- "e8aab3dc-8f6d-4498-9c08-d3f5bc60d22b"
+ "d23e52b8-3e76-4fe1-a058-0e6c69972858"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223526Z:e8aab3dc-8f6d-4498-9c08-d3f5bc60d22b"
+ "NORTHCENTRALUS:20200514T212715Z:d23e52b8-3e76-4fe1-a058-0e6c69972858"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4098,7 +4098,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:26 GMT"
+ "Thu, 14 May 2020 21:27:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4107,23 +4107,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66e5c10c-ce5e-4477-a740-64e510901360"
+ "5291b9e3-ff94-48e2-ba73-73a8886da8ed"
],
"Accept-Language": [
"en-US"
@@ -4143,16 +4143,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11879"
+ "11878"
],
"x-ms-request-id": [
- "e0d524fe-9646-4b4e-9cb4-210199bc23e5"
+ "c7406f03-aa55-47dc-95d1-aaba3aaf1b33"
],
"x-ms-correlation-request-id": [
- "e0d524fe-9646-4b4e-9cb4-210199bc23e5"
+ "c7406f03-aa55-47dc-95d1-aaba3aaf1b33"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223527Z:e0d524fe-9646-4b4e-9cb4-210199bc23e5"
+ "NORTHCENTRALUS:20200514T212715Z:c7406f03-aa55-47dc-95d1-aaba3aaf1b33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4161,7 +4161,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:27 GMT"
+ "Thu, 14 May 2020 21:27:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4170,23 +4170,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d265b7d-25e0-4e7c-ae8b-a023d3d3a330"
+ "ac194505-b298-4e4e-8d63-7b082483b928"
],
"Accept-Language": [
"en-US"
@@ -4206,16 +4206,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11877"
+ "11876"
],
"x-ms-request-id": [
- "0801e0c1-2ca2-44b3-8afc-3452e289f19d"
+ "35ffd6b1-a88d-4fcb-aabc-d987e09974a1"
],
"x-ms-correlation-request-id": [
- "0801e0c1-2ca2-44b3-8afc-3452e289f19d"
+ "35ffd6b1-a88d-4fcb-aabc-d987e09974a1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223527Z:0801e0c1-2ca2-44b3-8afc-3452e289f19d"
+ "NORTHCENTRALUS:20200514T212715Z:35ffd6b1-a88d-4fcb-aabc-d987e09974a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4224,7 +4224,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:27 GMT"
+ "Thu, 14 May 2020 21:27:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4233,23 +4233,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52fe6333-7ced-4ccc-ab82-d7758911f89c"
+ "615493b4-2e7c-4eb7-b606-e1f21f034ff2"
],
"Accept-Language": [
"en-US"
@@ -4269,16 +4269,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11875"
+ "11874"
],
"x-ms-request-id": [
- "f833226e-90c3-4908-96b2-368c4ff8fe5d"
+ "009a16ec-828f-4696-b628-5f3e783bf5b1"
],
"x-ms-correlation-request-id": [
- "f833226e-90c3-4908-96b2-368c4ff8fe5d"
+ "009a16ec-828f-4696-b628-5f3e783bf5b1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223528Z:f833226e-90c3-4908-96b2-368c4ff8fe5d"
+ "NORTHCENTRALUS:20200514T212716Z:009a16ec-828f-4696-b628-5f3e783bf5b1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4287,7 +4287,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:27 GMT"
+ "Thu, 14 May 2020 21:27:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4296,23 +4296,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "28c3109d-b1d8-4736-96c7-9232206aa05b"
+ "45460b0d-42ed-4dbc-9e34-3fb97056a3ca"
],
"Accept-Language": [
"en-US"
@@ -4332,16 +4332,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11873"
+ "11872"
],
"x-ms-request-id": [
- "cca4e9db-948b-4f51-bd5f-87f4b8a0c2fb"
+ "5bd74cb4-3d12-44cb-8a3a-7959bb281baa"
],
"x-ms-correlation-request-id": [
- "cca4e9db-948b-4f51-bd5f-87f4b8a0c2fb"
+ "5bd74cb4-3d12-44cb-8a3a-7959bb281baa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223528Z:cca4e9db-948b-4f51-bd5f-87f4b8a0c2fb"
+ "NORTHCENTRALUS:20200514T212716Z:5bd74cb4-3d12-44cb-8a3a-7959bb281baa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4350,7 +4350,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:28 GMT"
+ "Thu, 14 May 2020 21:27:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4359,23 +4359,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a234580-0b01-484d-b138-be446b22bbbd"
+ "5441819c-d5f7-46b2-8f7d-0c3ef7e55579"
],
"Accept-Language": [
"en-US"
@@ -4395,16 +4395,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11871"
+ "11870"
],
"x-ms-request-id": [
- "950b2d84-e67a-40d0-aefd-d3c167aee464"
+ "4cfdcf1f-987a-4335-ba1f-2b7600805e04"
],
"x-ms-correlation-request-id": [
- "950b2d84-e67a-40d0-aefd-d3c167aee464"
+ "4cfdcf1f-987a-4335-ba1f-2b7600805e04"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223528Z:950b2d84-e67a-40d0-aefd-d3c167aee464"
+ "NORTHCENTRALUS:20200514T212717Z:4cfdcf1f-987a-4335-ba1f-2b7600805e04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4413,7 +4413,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:28 GMT"
+ "Thu, 14 May 2020 21:27:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4422,23 +4422,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a971e8e9-36e4-42a3-a132-a5989171c94c"
+ "c6113cf0-006a-4011-aac0-1b17c4b6abeb"
],
"Accept-Language": [
"en-US"
@@ -4458,16 +4458,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11869"
+ "11868"
],
"x-ms-request-id": [
- "005e2912-595b-46f9-a23f-1d1256f5d1da"
+ "6bd59f26-603b-45b2-b594-550506b4877b"
],
"x-ms-correlation-request-id": [
- "005e2912-595b-46f9-a23f-1d1256f5d1da"
+ "6bd59f26-603b-45b2-b594-550506b4877b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223529Z:005e2912-595b-46f9-a23f-1d1256f5d1da"
+ "NORTHCENTRALUS:20200514T212717Z:6bd59f26-603b-45b2-b594-550506b4877b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4476,7 +4476,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:29 GMT"
+ "Thu, 14 May 2020 21:27:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4485,23 +4485,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f95a335a-abdb-459a-ad33-ab4b64b19198"
+ "18ace18b-fb4d-4afa-a81d-db1990b263c0"
],
"Accept-Language": [
"en-US"
@@ -4521,16 +4521,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11867"
+ "11866"
],
"x-ms-request-id": [
- "56bc60fc-a095-466b-a1f9-f203260bd729"
+ "5e8e1017-7403-4627-adef-a6c1342525b5"
],
"x-ms-correlation-request-id": [
- "56bc60fc-a095-466b-a1f9-f203260bd729"
+ "5e8e1017-7403-4627-adef-a6c1342525b5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223529Z:56bc60fc-a095-466b-a1f9-f203260bd729"
+ "NORTHCENTRALUS:20200514T212718Z:5e8e1017-7403-4627-adef-a6c1342525b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4539,7 +4539,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:29 GMT"
+ "Thu, 14 May 2020 21:27:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4548,23 +4548,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdb0ff4a-4530-4664-8fe8-7684067e97dd"
+ "25de6bc0-5abc-45df-ae12-6508829c083e"
],
"Accept-Language": [
"en-US"
@@ -4584,16 +4584,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11865"
+ "11864"
],
"x-ms-request-id": [
- "efa5026a-cfa4-405f-a386-a7a5eec1b6fb"
+ "b4721083-7159-4ccc-89d8-884ca89f0eb8"
],
"x-ms-correlation-request-id": [
- "efa5026a-cfa4-405f-a386-a7a5eec1b6fb"
+ "b4721083-7159-4ccc-89d8-884ca89f0eb8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223530Z:efa5026a-cfa4-405f-a386-a7a5eec1b6fb"
+ "NORTHCENTRALUS:20200514T212718Z:b4721083-7159-4ccc-89d8-884ca89f0eb8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4602,7 +4602,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:29 GMT"
+ "Thu, 14 May 2020 21:27:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4611,23 +4611,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67e08cff-02fe-4e5b-99e2-acc2c701f973"
+ "d759091d-da8c-43d8-a03c-79c71abcbb0a"
],
"Accept-Language": [
"en-US"
@@ -4647,16 +4647,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11863"
+ "11862"
],
"x-ms-request-id": [
- "fa88c1a3-3ffe-461d-919d-2759be98b186"
+ "fce5088b-c687-476f-a209-65e8355fadac"
],
"x-ms-correlation-request-id": [
- "fa88c1a3-3ffe-461d-919d-2759be98b186"
+ "fce5088b-c687-476f-a209-65e8355fadac"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223530Z:fa88c1a3-3ffe-461d-919d-2759be98b186"
+ "NORTHCENTRALUS:20200514T212718Z:fce5088b-c687-476f-a209-65e8355fadac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4665,7 +4665,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:30 GMT"
+ "Thu, 14 May 2020 21:27:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4674,23 +4674,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "408dc65e-7485-49aa-b304-cbd585d096ba"
+ "96a87ccf-c878-4dab-a962-232ac1433f1d"
],
"Accept-Language": [
"en-US"
@@ -4710,16 +4710,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11861"
+ "11860"
],
"x-ms-request-id": [
- "69b0f44b-d3b9-403f-8b8b-469b40705289"
+ "91531801-7a11-41e9-a2ad-0db6f745ecf7"
],
"x-ms-correlation-request-id": [
- "69b0f44b-d3b9-403f-8b8b-469b40705289"
+ "91531801-7a11-41e9-a2ad-0db6f745ecf7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223531Z:69b0f44b-d3b9-403f-8b8b-469b40705289"
+ "NORTHCENTRALUS:20200514T212719Z:91531801-7a11-41e9-a2ad-0db6f745ecf7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4728,7 +4728,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:30 GMT"
+ "Thu, 14 May 2020 21:27:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4737,23 +4737,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.2226155Z\",\r\n \"duration\": \"PT21.0945464S\",\r\n \"trackingId\": \"8ab82956-7bb1-484d-af3c-053b633d708d\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c18a8125-8106-447e-966b-c5d2df10ed92"
+ "c75f48fd-ff05-4b55-a296-112c5c69b933"
],
"Accept-Language": [
"en-US"
@@ -4773,16 +4773,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11859"
+ "11858"
],
"x-ms-request-id": [
- "f40673cd-9502-43c1-a35f-ddf0acd007e4"
+ "1a9802c6-dda0-4164-9723-3c768ab70061"
],
"x-ms-correlation-request-id": [
- "f40673cd-9502-43c1-a35f-ddf0acd007e4"
+ "1a9802c6-dda0-4164-9723-3c768ab70061"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223531Z:f40673cd-9502-43c1-a35f-ddf0acd007e4"
+ "NORTHCENTRALUS:20200514T212719Z:1a9802c6-dda0-4164-9723-3c768ab70061"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4791,7 +4791,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:31 GMT"
+ "Thu, 14 May 2020 21:27:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4800,23 +4800,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26792bb9-2874-459d-91f2-17e95678f9df"
+ "4b7b2c0a-04fa-44cb-9d54-b96eb92fc7f9"
],
"Accept-Language": [
"en-US"
@@ -4836,16 +4836,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11857"
+ "11856"
],
"x-ms-request-id": [
- "afa74abf-d990-4dcf-9f0b-6659993afc00"
+ "742529b7-67e5-4106-a5c0-f6a3ee9b2bd4"
],
"x-ms-correlation-request-id": [
- "afa74abf-d990-4dcf-9f0b-6659993afc00"
+ "742529b7-67e5-4106-a5c0-f6a3ee9b2bd4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223531Z:afa74abf-d990-4dcf-9f0b-6659993afc00"
+ "NORTHCENTRALUS:20200514T212720Z:742529b7-67e5-4106-a5c0-f6a3ee9b2bd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4854,7 +4854,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:31 GMT"
+ "Thu, 14 May 2020 21:27:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4863,23 +4863,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c41f6ae5-c3a6-43ce-97bb-f5f607296fdc"
+ "09dd101e-d7e0-48e6-8112-3fa8d6ac94e3"
],
"Accept-Language": [
"en-US"
@@ -4899,16 +4899,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11855"
+ "11854"
],
"x-ms-request-id": [
- "b51f56d1-239e-42bd-a162-ca89c7fbacf0"
+ "27993980-6f26-427b-b153-1b587111db7a"
],
"x-ms-correlation-request-id": [
- "b51f56d1-239e-42bd-a162-ca89c7fbacf0"
+ "27993980-6f26-427b-b153-1b587111db7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223532Z:b51f56d1-239e-42bd-a162-ca89c7fbacf0"
+ "NORTHCENTRALUS:20200514T212720Z:27993980-6f26-427b-b153-1b587111db7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4917,7 +4917,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:31 GMT"
+ "Thu, 14 May 2020 21:27:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4926,23 +4926,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae9a4479-2083-42bc-b322-e4717490201f"
+ "eadf90a4-8e32-44d2-be04-93eea9a6c68e"
],
"Accept-Language": [
"en-US"
@@ -4962,16 +4962,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11853"
+ "11852"
],
"x-ms-request-id": [
- "7d46b1da-4e94-47ba-a4d3-35af2b0feefa"
+ "d02b75f8-2fbd-4d9b-a2ee-cc473b6adc39"
],
"x-ms-correlation-request-id": [
- "7d46b1da-4e94-47ba-a4d3-35af2b0feefa"
+ "d02b75f8-2fbd-4d9b-a2ee-cc473b6adc39"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223532Z:7d46b1da-4e94-47ba-a4d3-35af2b0feefa"
+ "NORTHCENTRALUS:20200514T212721Z:d02b75f8-2fbd-4d9b-a2ee-cc473b6adc39"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4980,7 +4980,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:32 GMT"
+ "Thu, 14 May 2020 21:27:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4989,23 +4989,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.1286935Z\",\r\n \"duration\": \"PT22.7668459S\",\r\n \"trackingId\": \"d04fc192-9cba-4267-8652-732457898e57\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "beacb773-8e49-4704-85b4-dd5f500f4045"
+ "bb4ab11d-b6c3-4045-aad5-eb2c52b8e2c2"
],
"Accept-Language": [
"en-US"
@@ -5025,16 +5025,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11851"
+ "11850"
],
"x-ms-request-id": [
- "30a3aa5d-71f5-46a4-9ce7-d1dc15559db2"
+ "4c19d5bf-cd68-4cac-9424-634edd9979bb"
],
"x-ms-correlation-request-id": [
- "30a3aa5d-71f5-46a4-9ce7-d1dc15559db2"
+ "4c19d5bf-cd68-4cac-9424-634edd9979bb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223533Z:30a3aa5d-71f5-46a4-9ce7-d1dc15559db2"
+ "NORTHCENTRALUS:20200514T212721Z:4c19d5bf-cd68-4cac-9424-634edd9979bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5043,7 +5043,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:32 GMT"
+ "Thu, 14 May 2020 21:27:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5052,23 +5052,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f37b557f-0436-42a4-bad7-94c6838055cd"
+ "ab51f122-74eb-4109-b437-64294914cb96"
],
"Accept-Language": [
"en-US"
@@ -5088,16 +5088,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11849"
+ "11848"
],
"x-ms-request-id": [
- "f930cfb6-4f48-4493-827a-20a92e134e64"
+ "85a822f1-0196-47be-83a0-868fedc8f223"
],
"x-ms-correlation-request-id": [
- "f930cfb6-4f48-4493-827a-20a92e134e64"
+ "85a822f1-0196-47be-83a0-868fedc8f223"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223533Z:f930cfb6-4f48-4493-827a-20a92e134e64"
+ "NORTHCENTRALUS:20200514T212721Z:85a822f1-0196-47be-83a0-868fedc8f223"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5106,7 +5106,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:33 GMT"
+ "Thu, 14 May 2020 21:27:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5115,23 +5115,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3df59776-78e4-48bc-8d8e-eea75116f65f"
+ "58de69cf-e53d-4bc9-b1a0-a347cc642c5e"
],
"Accept-Language": [
"en-US"
@@ -5151,16 +5151,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11847"
+ "11846"
],
"x-ms-request-id": [
- "5114bba7-93ad-40ca-a2a8-c9fef3b3fdab"
+ "a5ae7293-d00f-47d4-8ce6-182b11618fbf"
],
"x-ms-correlation-request-id": [
- "5114bba7-93ad-40ca-a2a8-c9fef3b3fdab"
+ "a5ae7293-d00f-47d4-8ce6-182b11618fbf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223534Z:5114bba7-93ad-40ca-a2a8-c9fef3b3fdab"
+ "NORTHCENTRALUS:20200514T212722Z:a5ae7293-d00f-47d4-8ce6-182b11618fbf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5169,7 +5169,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:33 GMT"
+ "Thu, 14 May 2020 21:27:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5178,23 +5178,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfbc2c41-5411-4fe4-85d5-ca55f56da4c9"
+ "bc43c0ae-1cbd-4407-9682-5fec2cfe500b"
],
"Accept-Language": [
"en-US"
@@ -5214,16 +5214,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11845"
+ "11844"
],
"x-ms-request-id": [
- "1de83344-1a05-4802-b3af-88889bae1f29"
+ "3411ef9f-c87f-47ad-9884-0f032a9e0517"
],
"x-ms-correlation-request-id": [
- "1de83344-1a05-4802-b3af-88889bae1f29"
+ "3411ef9f-c87f-47ad-9884-0f032a9e0517"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223534Z:1de83344-1a05-4802-b3af-88889bae1f29"
+ "NORTHCENTRALUS:20200514T212722Z:3411ef9f-c87f-47ad-9884-0f032a9e0517"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5232,7 +5232,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:34 GMT"
+ "Thu, 14 May 2020 21:27:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5241,23 +5241,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a4a8b20-0faf-4255-9efc-4abd5fbc43a2"
+ "a12b42dd-740c-4199-9a7f-da2f9eb7a88d"
],
"Accept-Language": [
"en-US"
@@ -5277,16 +5277,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11843"
+ "11842"
],
"x-ms-request-id": [
- "dccb5ccd-773e-479a-bb88-7819880bea0f"
+ "eedbc41a-30e4-414f-a8b7-6558ddfd97e2"
],
"x-ms-correlation-request-id": [
- "dccb5ccd-773e-479a-bb88-7819880bea0f"
+ "eedbc41a-30e4-414f-a8b7-6558ddfd97e2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223534Z:dccb5ccd-773e-479a-bb88-7819880bea0f"
+ "NORTHCENTRALUS:20200514T212723Z:eedbc41a-30e4-414f-a8b7-6558ddfd97e2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5295,7 +5295,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:34 GMT"
+ "Thu, 14 May 2020 21:27:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5304,23 +5304,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b16078ed-d869-408f-adaa-57db8e02d668"
+ "04388f78-19c6-4e63-9ba4-b537d0f75e9e"
],
"Accept-Language": [
"en-US"
@@ -5340,16 +5340,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11841"
+ "11840"
],
"x-ms-request-id": [
- "b2141182-e225-4bbe-8060-6282d096a141"
+ "9b8cbb1d-ece7-410c-8a7b-eca899d5a005"
],
"x-ms-correlation-request-id": [
- "b2141182-e225-4bbe-8060-6282d096a141"
+ "9b8cbb1d-ece7-410c-8a7b-eca899d5a005"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223535Z:b2141182-e225-4bbe-8060-6282d096a141"
+ "NORTHCENTRALUS:20200514T212723Z:9b8cbb1d-ece7-410c-8a7b-eca899d5a005"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5358,7 +5358,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:34 GMT"
+ "Thu, 14 May 2020 21:27:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5367,23 +5367,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ccbf9eb-c573-4265-a6df-f7596d0b9c44"
+ "9a4f004a-8b4a-40ee-9e4d-f1eaa77f36d8"
],
"Accept-Language": [
"en-US"
@@ -5403,16 +5403,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11839"
+ "11838"
],
"x-ms-request-id": [
- "b6998766-27a1-4b62-9218-59cb806e0dcf"
+ "7a05b72c-a733-439d-bb06-988791446eb8"
],
"x-ms-correlation-request-id": [
- "b6998766-27a1-4b62-9218-59cb806e0dcf"
+ "7a05b72c-a733-439d-bb06-988791446eb8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223535Z:b6998766-27a1-4b62-9218-59cb806e0dcf"
+ "NORTHCENTRALUS:20200514T212724Z:7a05b72c-a733-439d-bb06-988791446eb8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5421,7 +5421,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:35 GMT"
+ "Thu, 14 May 2020 21:27:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5430,23 +5430,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b5d97e27-8ee5-4e18-98e8-04762a417bf1"
+ "586d27d2-2288-4f3d-abe1-fb2827133724"
],
"Accept-Language": [
"en-US"
@@ -5466,16 +5466,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11837"
+ "11836"
],
"x-ms-request-id": [
- "3e2ffa50-f966-42ee-9a5d-9bb0d353f727"
+ "39554953-0470-49ab-9705-8039ae0d5962"
],
"x-ms-correlation-request-id": [
- "3e2ffa50-f966-42ee-9a5d-9bb0d353f727"
+ "39554953-0470-49ab-9705-8039ae0d5962"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223536Z:3e2ffa50-f966-42ee-9a5d-9bb0d353f727"
+ "NORTHCENTRALUS:20200514T212724Z:39554953-0470-49ab-9705-8039ae0d5962"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5484,7 +5484,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:35 GMT"
+ "Thu, 14 May 2020 21:27:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5493,23 +5493,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea5dfdb3-319c-4fd4-9070-f545172190dd"
+ "8907bef2-4309-4b24-a8c6-22eb1e92a975"
],
"Accept-Language": [
"en-US"
@@ -5529,16 +5529,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11835"
+ "11834"
],
"x-ms-request-id": [
- "fcee58d1-c805-4572-84d9-8c589b04bfb2"
+ "8f34d0e4-3c00-47f1-a764-ac21ad35dd41"
],
"x-ms-correlation-request-id": [
- "fcee58d1-c805-4572-84d9-8c589b04bfb2"
+ "8f34d0e4-3c00-47f1-a764-ac21ad35dd41"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223536Z:fcee58d1-c805-4572-84d9-8c589b04bfb2"
+ "NORTHCENTRALUS:20200514T212724Z:8f34d0e4-3c00-47f1-a764-ac21ad35dd41"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5547,7 +5547,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:36 GMT"
+ "Thu, 14 May 2020 21:27:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5556,23 +5556,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "101a48c9-9c11-49da-986f-ff2a5a5743c7"
+ "78c5c507-4c0d-4a14-92f5-ecb40a6fbc1a"
],
"Accept-Language": [
"en-US"
@@ -5592,16 +5592,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11833"
+ "11832"
],
"x-ms-request-id": [
- "17bd2573-ff0b-4a6a-8fdd-5e0b9065bfa5"
+ "c8d8675a-637e-460b-bddd-1b630887f482"
],
"x-ms-correlation-request-id": [
- "17bd2573-ff0b-4a6a-8fdd-5e0b9065bfa5"
+ "c8d8675a-637e-460b-bddd-1b630887f482"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223537Z:17bd2573-ff0b-4a6a-8fdd-5e0b9065bfa5"
+ "NORTHCENTRALUS:20200514T212725Z:c8d8675a-637e-460b-bddd-1b630887f482"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5610,7 +5610,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:36 GMT"
+ "Thu, 14 May 2020 21:27:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5619,23 +5619,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fe47910-2f21-4cc5-a084-1bc2baffeeed"
+ "e1dc1387-8492-487b-b2a8-cf4b974a834f"
],
"Accept-Language": [
"en-US"
@@ -5655,16 +5655,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11831"
+ "11830"
],
"x-ms-request-id": [
- "5c1293b1-582d-4625-8619-f703e6b14961"
+ "7cf3ed22-019d-4be9-9e36-f567a7de3abb"
],
"x-ms-correlation-request-id": [
- "5c1293b1-582d-4625-8619-f703e6b14961"
+ "7cf3ed22-019d-4be9-9e36-f567a7de3abb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223537Z:5c1293b1-582d-4625-8619-f703e6b14961"
+ "NORTHCENTRALUS:20200514T212725Z:7cf3ed22-019d-4be9-9e36-f567a7de3abb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5673,7 +5673,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:36 GMT"
+ "Thu, 14 May 2020 21:27:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5682,23 +5682,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e1fd50c-99c8-4b3b-bea0-c3a7a20a0041"
+ "6d1a67c7-7dbf-4cb9-a4d7-4978f475c6e1"
],
"Accept-Language": [
"en-US"
@@ -5718,16 +5718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11829"
+ "11828"
],
"x-ms-request-id": [
- "581fe737-94b4-4e71-b449-1960b79ceb9d"
+ "502e6a1a-d7a8-417f-9596-15c3e24182ae"
],
"x-ms-correlation-request-id": [
- "581fe737-94b4-4e71-b449-1960b79ceb9d"
+ "502e6a1a-d7a8-417f-9596-15c3e24182ae"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223537Z:581fe737-94b4-4e71-b449-1960b79ceb9d"
+ "NORTHCENTRALUS:20200514T212726Z:502e6a1a-d7a8-417f-9596-15c3e24182ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5736,7 +5736,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:37 GMT"
+ "Thu, 14 May 2020 21:27:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5745,23 +5745,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c42b2666-bd11-45e6-b8b2-2c84682c4d53"
+ "50d1cc55-4e0d-4a12-8976-8878988298eb"
],
"Accept-Language": [
"en-US"
@@ -5781,16 +5781,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11827"
+ "11826"
],
"x-ms-request-id": [
- "282f7e79-7bfd-417c-8da4-1ad2816985ed"
+ "e9b7ce32-9df5-46ea-9bf4-de0049d7e15f"
],
"x-ms-correlation-request-id": [
- "282f7e79-7bfd-417c-8da4-1ad2816985ed"
+ "e9b7ce32-9df5-46ea-9bf4-de0049d7e15f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223538Z:282f7e79-7bfd-417c-8da4-1ad2816985ed"
+ "NORTHCENTRALUS:20200514T212726Z:e9b7ce32-9df5-46ea-9bf4-de0049d7e15f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5799,7 +5799,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:37 GMT"
+ "Thu, 14 May 2020 21:27:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5808,23 +5808,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffbe7e9f-d79b-4ab7-9095-7806ec16fc08"
+ "f3e5baca-2a96-4f40-bb27-bbe491ff3010"
],
"Accept-Language": [
"en-US"
@@ -5844,16 +5844,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11825"
+ "11824"
],
"x-ms-request-id": [
- "0b495135-d823-4314-a4c1-e471f78ef457"
+ "e635e799-22da-4e6e-b86e-393ea9145fc9"
],
"x-ms-correlation-request-id": [
- "0b495135-d823-4314-a4c1-e471f78ef457"
+ "e635e799-22da-4e6e-b86e-393ea9145fc9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223538Z:0b495135-d823-4314-a4c1-e471f78ef457"
+ "NORTHCENTRALUS:20200514T212727Z:e635e799-22da-4e6e-b86e-393ea9145fc9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5862,7 +5862,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:38 GMT"
+ "Thu, 14 May 2020 21:27:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5871,23 +5871,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e247088b-1043-4cfc-8eef-28d31e025646"
+ "61a05213-f7dd-4f8b-a717-d138c19d9323"
],
"Accept-Language": [
"en-US"
@@ -5907,16 +5907,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11823"
+ "11822"
],
"x-ms-request-id": [
- "9922a487-921a-4e59-9ce2-204e3c0082fb"
+ "767d67b5-92fb-48a3-b2ef-099c08fadf5a"
],
"x-ms-correlation-request-id": [
- "9922a487-921a-4e59-9ce2-204e3c0082fb"
+ "767d67b5-92fb-48a3-b2ef-099c08fadf5a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223539Z:9922a487-921a-4e59-9ce2-204e3c0082fb"
+ "NORTHCENTRALUS:20200514T212727Z:767d67b5-92fb-48a3-b2ef-099c08fadf5a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5925,7 +5925,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:38 GMT"
+ "Thu, 14 May 2020 21:27:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5934,23 +5934,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0599008Z\",\r\n \"duration\": \"PT27.9318317S\",\r\n \"trackingId\": \"3185ad16-c48f-4a19-aad5-461ddbf290ea\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43ebfa31-a672-48dd-9dc0-05469f3c7ee8"
+ "9eb53456-191e-495c-8b85-1239d1eb684f"
],
"Accept-Language": [
"en-US"
@@ -5970,16 +5970,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11821"
+ "11820"
],
"x-ms-request-id": [
- "a4abcf05-fb70-4873-8e52-7a5ee13e5a75"
+ "320ecff1-a645-4832-8969-289e1cab0c2d"
],
"x-ms-correlation-request-id": [
- "a4abcf05-fb70-4873-8e52-7a5ee13e5a75"
+ "320ecff1-a645-4832-8969-289e1cab0c2d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223539Z:a4abcf05-fb70-4873-8e52-7a5ee13e5a75"
+ "NORTHCENTRALUS:20200514T212727Z:320ecff1-a645-4832-8969-289e1cab0c2d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5988,7 +5988,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:38 GMT"
+ "Thu, 14 May 2020 21:27:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5997,23 +5997,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c54efb7-6c5e-4abf-80d3-c199b235e470"
+ "565a04e4-bc55-4087-b50c-980c89164cd2"
],
"Accept-Language": [
"en-US"
@@ -6033,16 +6033,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11819"
+ "11818"
],
"x-ms-request-id": [
- "76988356-3a63-4b8b-85ca-b992234dd717"
+ "6077bbe6-2e2c-414b-a9c1-22c818ac55be"
],
"x-ms-correlation-request-id": [
- "76988356-3a63-4b8b-85ca-b992234dd717"
+ "6077bbe6-2e2c-414b-a9c1-22c818ac55be"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223539Z:76988356-3a63-4b8b-85ca-b992234dd717"
+ "NORTHCENTRALUS:20200514T212728Z:6077bbe6-2e2c-414b-a9c1-22c818ac55be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6051,7 +6051,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:39 GMT"
+ "Thu, 14 May 2020 21:27:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6060,23 +6060,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.1681205Z\",\r\n \"duration\": \"PT30.8062729S\",\r\n \"trackingId\": \"b883c8bc-5af0-49d6-9f08-6451a4caa07f\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "150b335a-4e43-4540-bece-88fdf3852bf3"
+ "568b23dd-c96f-456a-831b-abff1270ebcb"
],
"Accept-Language": [
"en-US"
@@ -6096,16 +6096,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11817"
+ "11816"
],
"x-ms-request-id": [
- "70caf096-6f19-4226-ac89-bd081a4f7f63"
+ "16b1aea6-3809-43c7-99bf-e247bbe7290a"
],
"x-ms-correlation-request-id": [
- "70caf096-6f19-4226-ac89-bd081a4f7f63"
+ "16b1aea6-3809-43c7-99bf-e247bbe7290a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223540Z:70caf096-6f19-4226-ac89-bd081a4f7f63"
+ "NORTHCENTRALUS:20200514T212728Z:16b1aea6-3809-43c7-99bf-e247bbe7290a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6114,7 +6114,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:39 GMT"
+ "Thu, 14 May 2020 21:27:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6123,23 +6123,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a4a27ac5-55d2-4fa4-983e-ab97ae7a426e"
+ "b93d030d-f907-49be-a11f-4747a2f97171"
],
"Accept-Language": [
"en-US"
@@ -6159,16 +6159,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11815"
+ "11814"
],
"x-ms-request-id": [
- "9df9e720-93d1-4aff-a404-2fb8bd40c028"
+ "9bfc1ddd-60ef-461d-8a96-0f0962bdb1e7"
],
"x-ms-correlation-request-id": [
- "9df9e720-93d1-4aff-a404-2fb8bd40c028"
+ "9bfc1ddd-60ef-461d-8a96-0f0962bdb1e7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223540Z:9df9e720-93d1-4aff-a404-2fb8bd40c028"
+ "NORTHCENTRALUS:20200514T212729Z:9bfc1ddd-60ef-461d-8a96-0f0962bdb1e7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6177,7 +6177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:40 GMT"
+ "Thu, 14 May 2020 21:27:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6186,149 +6186,23 @@
"-1"
],
"Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c91a9c2f-04b4-4a7e-955c-9921aaa8ef2f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11813"
- ],
- "x-ms-request-id": [
- "ffc2c1cb-61d5-43c2-ac19-878194ed26a1"
- ],
- "x-ms-correlation-request-id": [
- "ffc2c1cb-61d5-43c2-ac19-878194ed26a1"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223541Z:ffc2c1cb-61d5-43c2-ac19-878194ed26a1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:40 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f9d7a370-cac5-4630-bbdc-7a61147b87b6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11811"
- ],
- "x-ms-request-id": [
- "47b2b3ad-2977-4b28-bede-be9157a325d3"
- ],
- "x-ms-correlation-request-id": [
- "47b2b3ad-2977-4b28-bede-be9157a325d3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223541Z:47b2b3ad-2977-4b28-bede-be9157a325d3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:41 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83935aeb-956c-4d8d-a8c5-d0bfee65b7b9"
+ "f61b3bc0-eb18-42d8-9ca5-5c292f6838d9"
],
"Accept-Language": [
"en-US"
@@ -6348,16 +6222,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11809"
+ "11812"
],
"x-ms-request-id": [
- "e6a423a8-6e88-40c0-9da4-2f49ea6eb6ef"
+ "7c25e842-9c87-45e4-96ec-eff2808a4baa"
],
"x-ms-correlation-request-id": [
- "e6a423a8-6e88-40c0-9da4-2f49ea6eb6ef"
+ "7c25e842-9c87-45e4-96ec-eff2808a4baa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223542Z:e6a423a8-6e88-40c0-9da4-2f49ea6eb6ef"
+ "NORTHCENTRALUS:20200514T212729Z:7c25e842-9c87-45e4-96ec-eff2808a4baa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6366,7 +6240,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:41 GMT"
+ "Thu, 14 May 2020 21:27:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6375,23 +6249,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "68998d41-d4f2-4dcb-a25c-8ceae8828397"
+ "931a409f-90c7-4ee2-ad9e-0a8b51e87e24"
],
"Accept-Language": [
"en-US"
@@ -6411,16 +6285,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11807"
+ "11810"
],
"x-ms-request-id": [
- "d4153b2b-5ea9-4252-ba86-195a05f36fb1"
+ "15029c3b-f6c9-4cd9-a099-4ac9b97ce2db"
],
"x-ms-correlation-request-id": [
- "d4153b2b-5ea9-4252-ba86-195a05f36fb1"
+ "15029c3b-f6c9-4cd9-a099-4ac9b97ce2db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223542Z:d4153b2b-5ea9-4252-ba86-195a05f36fb1"
+ "NORTHCENTRALUS:20200514T212730Z:15029c3b-f6c9-4cd9-a099-4ac9b97ce2db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6429,7 +6303,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:41 GMT"
+ "Thu, 14 May 2020 21:27:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6438,23 +6312,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce38d1c6-5ab7-4eb6-85d7-5cdb641d9a12"
+ "63412b49-703b-4a44-864a-377a167850ea"
],
"Accept-Language": [
"en-US"
@@ -6474,16 +6348,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11805"
+ "11808"
],
"x-ms-request-id": [
- "00801747-4a73-4bf7-97fd-c8cfd2a72855"
+ "2dfcdbc9-0f54-4d90-8c54-bf5ac5d31f91"
],
"x-ms-correlation-request-id": [
- "00801747-4a73-4bf7-97fd-c8cfd2a72855"
+ "2dfcdbc9-0f54-4d90-8c54-bf5ac5d31f91"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223542Z:00801747-4a73-4bf7-97fd-c8cfd2a72855"
+ "NORTHCENTRALUS:20200514T212730Z:2dfcdbc9-0f54-4d90-8c54-bf5ac5d31f91"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6492,7 +6366,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:42 GMT"
+ "Thu, 14 May 2020 21:27:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6501,23 +6375,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a1d56f2-1a6b-4038-ba73-d32de6c76b4f"
+ "63c29cff-9de8-4f0f-a08f-51b09e76cb0d"
],
"Accept-Language": [
"en-US"
@@ -6537,16 +6411,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11803"
+ "11806"
],
"x-ms-request-id": [
- "1f9c003d-f289-4bd5-9a28-37b0b147e954"
+ "910da977-ebf3-481c-8134-ad6111df939c"
],
"x-ms-correlation-request-id": [
- "1f9c003d-f289-4bd5-9a28-37b0b147e954"
+ "910da977-ebf3-481c-8134-ad6111df939c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223543Z:1f9c003d-f289-4bd5-9a28-37b0b147e954"
+ "NORTHCENTRALUS:20200514T212731Z:910da977-ebf3-481c-8134-ad6111df939c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6555,7 +6429,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:42 GMT"
+ "Thu, 14 May 2020 21:27:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6564,23 +6438,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba45f610-9d2f-4b85-93d2-31734c4e3a1e"
+ "d4d7541a-1223-4602-ab25-4c1bf77bba29"
],
"Accept-Language": [
"en-US"
@@ -6600,16 +6474,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11801"
+ "11804"
],
"x-ms-request-id": [
- "d38bf71f-15bf-4b43-8751-c501c2860819"
+ "54f684a3-cfee-451d-889f-f8e4da869556"
],
"x-ms-correlation-request-id": [
- "d38bf71f-15bf-4b43-8751-c501c2860819"
+ "54f684a3-cfee-451d-889f-f8e4da869556"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223543Z:d38bf71f-15bf-4b43-8751-c501c2860819"
+ "NORTHCENTRALUS:20200514T212731Z:54f684a3-cfee-451d-889f-f8e4da869556"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6618,7 +6492,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:43 GMT"
+ "Thu, 14 May 2020 21:27:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6627,23 +6501,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06a9f279-fd91-4799-b887-96e2c882e00a"
+ "8d14785b-63a7-4b55-ab98-89a3156aa068"
],
"Accept-Language": [
"en-US"
@@ -6663,16 +6537,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11799"
+ "11802"
],
"x-ms-request-id": [
- "4c77ba10-e44b-4df2-b33f-699dfd33a3fc"
+ "59ebe9d3-fdc8-4141-8d4a-e2b35cc9d21e"
],
"x-ms-correlation-request-id": [
- "4c77ba10-e44b-4df2-b33f-699dfd33a3fc"
+ "59ebe9d3-fdc8-4141-8d4a-e2b35cc9d21e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223544Z:4c77ba10-e44b-4df2-b33f-699dfd33a3fc"
+ "NORTHCENTRALUS:20200514T212732Z:59ebe9d3-fdc8-4141-8d4a-e2b35cc9d21e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6681,7 +6555,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:43 GMT"
+ "Thu, 14 May 2020 21:27:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6690,23 +6564,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4becfff5-358e-4a18-986b-9f3a2c39d0ea"
+ "067dcff2-cfd7-431e-9860-0765e53711ee"
],
"Accept-Language": [
"en-US"
@@ -6726,16 +6600,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11797"
+ "11800"
],
"x-ms-request-id": [
- "884d0428-8fea-45d9-8396-a5d15a2a82b7"
+ "22d9f4bd-3731-421a-9bc7-0b187006afba"
],
"x-ms-correlation-request-id": [
- "884d0428-8fea-45d9-8396-a5d15a2a82b7"
+ "22d9f4bd-3731-421a-9bc7-0b187006afba"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223544Z:884d0428-8fea-45d9-8396-a5d15a2a82b7"
+ "NORTHCENTRALUS:20200514T212732Z:22d9f4bd-3731-421a-9bc7-0b187006afba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6744,7 +6618,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:43 GMT"
+ "Thu, 14 May 2020 21:27:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6753,23 +6627,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "33852e8b-eecc-44f3-8843-57ac997654c1"
+ "0fb3200d-59ff-4fbc-8a79-e6583c53cca9"
],
"Accept-Language": [
"en-US"
@@ -6789,16 +6663,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11795"
+ "11798"
],
"x-ms-request-id": [
- "bf14a43a-66e1-4cbf-a66a-56bdd067de07"
+ "2c7e318a-f1da-4971-9359-93908655f884"
],
"x-ms-correlation-request-id": [
- "bf14a43a-66e1-4cbf-a66a-56bdd067de07"
+ "2c7e318a-f1da-4971-9359-93908655f884"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223544Z:bf14a43a-66e1-4cbf-a66a-56bdd067de07"
+ "NORTHCENTRALUS:20200514T212732Z:2c7e318a-f1da-4971-9359-93908655f884"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6807,7 +6681,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:44 GMT"
+ "Thu, 14 May 2020 21:27:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6816,23 +6690,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7598cd6-5443-4135-9080-bdccf01a9517"
+ "bc277186-15b8-4ea5-a2b0-1371cef2f9b2"
],
"Accept-Language": [
"en-US"
@@ -6852,16 +6726,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11793"
+ "11796"
],
"x-ms-request-id": [
- "6319b8ac-8861-47b8-b420-f1a8c4cd7399"
+ "c6c73a36-1999-4463-85d0-64fa56a430f9"
],
"x-ms-correlation-request-id": [
- "6319b8ac-8861-47b8-b420-f1a8c4cd7399"
+ "c6c73a36-1999-4463-85d0-64fa56a430f9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223545Z:6319b8ac-8861-47b8-b420-f1a8c4cd7399"
+ "NORTHCENTRALUS:20200514T212733Z:c6c73a36-1999-4463-85d0-64fa56a430f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6870,7 +6744,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:44 GMT"
+ "Thu, 14 May 2020 21:27:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6879,23 +6753,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7b53235-316d-4cc0-8a86-ef5c8d9382b9"
+ "012c490d-7b91-412a-87b5-057925d5108f"
],
"Accept-Language": [
"en-US"
@@ -6915,16 +6789,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11791"
+ "11794"
],
"x-ms-request-id": [
- "817e8b30-fd41-4041-baec-2e1a489c2e1b"
+ "7e2aa3f5-044a-402f-af36-58d4b2b0f9fc"
],
"x-ms-correlation-request-id": [
- "817e8b30-fd41-4041-baec-2e1a489c2e1b"
+ "7e2aa3f5-044a-402f-af36-58d4b2b0f9fc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223545Z:817e8b30-fd41-4041-baec-2e1a489c2e1b"
+ "NORTHCENTRALUS:20200514T212733Z:7e2aa3f5-044a-402f-af36-58d4b2b0f9fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6933,7 +6807,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:45 GMT"
+ "Thu, 14 May 2020 21:27:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6942,23 +6816,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c194b683-d922-4c36-8486-8eaf775ce32d"
+ "8d597907-cf27-4540-85d8-c286bf78822f"
],
"Accept-Language": [
"en-US"
@@ -6978,16 +6852,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11789"
+ "11792"
],
"x-ms-request-id": [
- "d776c5d3-8c0e-49e5-a49c-01a67d1a43a0"
+ "fe6ef4c9-6faa-4360-8761-e5a4622c9bf9"
],
"x-ms-correlation-request-id": [
- "d776c5d3-8c0e-49e5-a49c-01a67d1a43a0"
+ "fe6ef4c9-6faa-4360-8761-e5a4622c9bf9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223546Z:d776c5d3-8c0e-49e5-a49c-01a67d1a43a0"
+ "NORTHCENTRALUS:20200514T212734Z:fe6ef4c9-6faa-4360-8761-e5a4622c9bf9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6996,7 +6870,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:45 GMT"
+ "Thu, 14 May 2020 21:27:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7005,23 +6879,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "170f4ad3-c134-4973-ad09-1fdf8a4f1dec"
+ "942b2157-a1ea-4717-bedd-2aa66794be1e"
],
"Accept-Language": [
"en-US"
@@ -7041,16 +6915,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11787"
+ "11790"
],
"x-ms-request-id": [
- "a04fd24a-4194-4ea9-956a-27a0a732f00b"
+ "706662b5-c885-433d-bf57-95797ec20aa8"
],
"x-ms-correlation-request-id": [
- "a04fd24a-4194-4ea9-956a-27a0a732f00b"
+ "706662b5-c885-433d-bf57-95797ec20aa8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223546Z:a04fd24a-4194-4ea9-956a-27a0a732f00b"
+ "NORTHCENTRALUS:20200514T212734Z:706662b5-c885-433d-bf57-95797ec20aa8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7059,7 +6933,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:45 GMT"
+ "Thu, 14 May 2020 21:27:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7068,23 +6942,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3afbdd66-9dc2-4e30-9efc-28fa1b7a480b"
+ "123ac06a-b5c2-459e-a0d2-213f57d5877b"
],
"Accept-Language": [
"en-US"
@@ -7104,16 +6978,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11785"
+ "11788"
],
"x-ms-request-id": [
- "61674e86-868f-49c9-8084-d3c2052d75c1"
+ "91fd8e5c-5cf7-4f96-ad32-ae3086bdbddf"
],
"x-ms-correlation-request-id": [
- "61674e86-868f-49c9-8084-d3c2052d75c1"
+ "91fd8e5c-5cf7-4f96-ad32-ae3086bdbddf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223547Z:61674e86-868f-49c9-8084-d3c2052d75c1"
+ "NORTHCENTRALUS:20200514T212735Z:91fd8e5c-5cf7-4f96-ad32-ae3086bdbddf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7122,7 +6996,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:46 GMT"
+ "Thu, 14 May 2020 21:27:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7131,23 +7005,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a6926181-9856-4531-8665-c53406560bfb"
+ "426accb8-21e6-4a16-9e1e-b71ba7f613a1"
],
"Accept-Language": [
"en-US"
@@ -7167,16 +7041,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11783"
+ "11786"
],
"x-ms-request-id": [
- "be1b073e-9995-4521-a134-d9d47d0d17f2"
+ "3a27c5e1-4207-484c-8deb-fcd1bc8af74c"
],
"x-ms-correlation-request-id": [
- "be1b073e-9995-4521-a134-d9d47d0d17f2"
+ "3a27c5e1-4207-484c-8deb-fcd1bc8af74c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223547Z:be1b073e-9995-4521-a134-d9d47d0d17f2"
+ "NORTHCENTRALUS:20200514T212735Z:3a27c5e1-4207-484c-8deb-fcd1bc8af74c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7185,7 +7059,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:46 GMT"
+ "Thu, 14 May 2020 21:27:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7194,23 +7068,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "629200ce-4164-4e78-9eba-3ed3d723effa"
+ "c745d7b1-d40a-4ff3-bcb6-08bc68d280e8"
],
"Accept-Language": [
"en-US"
@@ -7230,16 +7104,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11781"
+ "11784"
],
"x-ms-request-id": [
- "0aa90109-4b1c-44c4-88cc-1390ff6b734c"
+ "2a5e4b5e-5645-4a31-ae0b-c65563783dd3"
],
"x-ms-correlation-request-id": [
- "0aa90109-4b1c-44c4-88cc-1390ff6b734c"
+ "2a5e4b5e-5645-4a31-ae0b-c65563783dd3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223547Z:0aa90109-4b1c-44c4-88cc-1390ff6b734c"
+ "NORTHCENTRALUS:20200514T212735Z:2a5e4b5e-5645-4a31-ae0b-c65563783dd3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7248,7 +7122,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:47 GMT"
+ "Thu, 14 May 2020 21:27:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7257,23 +7131,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.3996818Z\",\r\n \"duration\": \"PT36.2716127S\",\r\n \"trackingId\": \"0bdc5af5-21e4-4af3-8d0c-35b77fa62167\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18167195-ae36-46d7-88df-2e1edb64d162"
+ "0f9bae2f-0c5f-409e-b8da-f86dc5eecfe8"
],
"Accept-Language": [
"en-US"
@@ -7293,16 +7167,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11779"
+ "11782"
],
"x-ms-request-id": [
- "2f04a3b0-3cff-43d7-9a2a-001ea3485833"
+ "d4098af0-4e74-41fc-b5f0-2eee631b0cb0"
],
"x-ms-correlation-request-id": [
- "2f04a3b0-3cff-43d7-9a2a-001ea3485833"
+ "d4098af0-4e74-41fc-b5f0-2eee631b0cb0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223548Z:2f04a3b0-3cff-43d7-9a2a-001ea3485833"
+ "NORTHCENTRALUS:20200514T212736Z:d4098af0-4e74-41fc-b5f0-2eee631b0cb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7311,7 +7185,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:47 GMT"
+ "Thu, 14 May 2020 21:27:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7320,23 +7194,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a22b51c-8fd8-4061-bd58-b54208d9858e"
+ "12e0b80b-b241-460e-ada4-16aac7aa83bf"
],
"Accept-Language": [
"en-US"
@@ -7356,16 +7230,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11777"
+ "11780"
],
"x-ms-request-id": [
- "2dd0f246-b7d3-4e94-99cb-d1f33faf9493"
+ "4400425d-49c8-420c-834b-a2859714004e"
],
"x-ms-correlation-request-id": [
- "2dd0f246-b7d3-4e94-99cb-d1f33faf9493"
+ "4400425d-49c8-420c-834b-a2859714004e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223548Z:2dd0f246-b7d3-4e94-99cb-d1f33faf9493"
+ "NORTHCENTRALUS:20200514T212736Z:4400425d-49c8-420c-834b-a2859714004e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7374,7 +7248,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:48 GMT"
+ "Thu, 14 May 2020 21:27:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7383,23 +7257,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7988722Z\",\r\n \"duration\": \"PT38.4370246S\",\r\n \"trackingId\": \"27a9487d-d276-4ce4-8f7b-0b81a2164e92\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4df1a75-73d0-451d-8099-9ed980c08444"
+ "fb6e8e49-70dc-4587-9289-dfdba82dfcb9"
],
"Accept-Language": [
"en-US"
@@ -7419,16 +7293,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11775"
+ "11778"
],
"x-ms-request-id": [
- "7ac19018-422c-4100-8a35-69e4d397c936"
+ "854033da-2edd-4eb2-a00f-0866e16f969f"
],
"x-ms-correlation-request-id": [
- "7ac19018-422c-4100-8a35-69e4d397c936"
+ "854033da-2edd-4eb2-a00f-0866e16f969f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223549Z:7ac19018-422c-4100-8a35-69e4d397c936"
+ "NORTHCENTRALUS:20200514T212737Z:854033da-2edd-4eb2-a00f-0866e16f969f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7437,7 +7311,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:48 GMT"
+ "Thu, 14 May 2020 21:27:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7446,23 +7320,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "570b4b64-c6e3-42d3-88e4-e60cd2d3ad79"
+ "f71d7087-03f9-49e6-a7ba-f93e0f2a20ba"
],
"Accept-Language": [
"en-US"
@@ -7482,16 +7356,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11773"
+ "11776"
],
"x-ms-request-id": [
- "59b5d34a-f8e1-4c8b-85cf-a66b050cec84"
+ "367bdb60-8e8e-4c0f-b505-f5d763c50e42"
],
"x-ms-correlation-request-id": [
- "59b5d34a-f8e1-4c8b-85cf-a66b050cec84"
+ "367bdb60-8e8e-4c0f-b505-f5d763c50e42"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223549Z:59b5d34a-f8e1-4c8b-85cf-a66b050cec84"
+ "NORTHCENTRALUS:20200514T212737Z:367bdb60-8e8e-4c0f-b505-f5d763c50e42"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7500,7 +7374,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:48 GMT"
+ "Thu, 14 May 2020 21:27:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7509,23 +7383,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25984b70-2702-43dd-993f-f4c7048af08c"
+ "abb1b474-954e-460d-8463-264851118b21"
],
"Accept-Language": [
"en-US"
@@ -7545,16 +7419,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11771"
+ "11774"
],
"x-ms-request-id": [
- "904c1ebd-7893-47d2-9e0b-00fac67ff570"
+ "69ac06ab-9d3e-4f65-8d25-9f383fed9357"
],
"x-ms-correlation-request-id": [
- "904c1ebd-7893-47d2-9e0b-00fac67ff570"
+ "69ac06ab-9d3e-4f65-8d25-9f383fed9357"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223550Z:904c1ebd-7893-47d2-9e0b-00fac67ff570"
+ "NORTHCENTRALUS:20200514T212737Z:69ac06ab-9d3e-4f65-8d25-9f383fed9357"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7563,7 +7437,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:49 GMT"
+ "Thu, 14 May 2020 21:27:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7572,23 +7446,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7fee2ecc-76de-47d4-82c7-bbe82534e95f"
+ "388aa62c-8600-4091-8d74-10679c1d4556"
],
"Accept-Language": [
"en-US"
@@ -7608,16 +7482,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11769"
+ "11772"
],
"x-ms-request-id": [
- "e1442353-4b07-453b-b5cb-5c92f1cccf48"
+ "2704c0f3-b4f7-4d29-96d1-8809ca7d9b0e"
],
"x-ms-correlation-request-id": [
- "e1442353-4b07-453b-b5cb-5c92f1cccf48"
+ "2704c0f3-b4f7-4d29-96d1-8809ca7d9b0e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223550Z:e1442353-4b07-453b-b5cb-5c92f1cccf48"
+ "NORTHCENTRALUS:20200514T212738Z:2704c0f3-b4f7-4d29-96d1-8809ca7d9b0e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7626,7 +7500,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:49 GMT"
+ "Thu, 14 May 2020 21:27:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7635,23 +7509,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6cdd1bcb-c899-4781-b0ea-9f25468fe994"
+ "b5c3a04e-38c5-438b-ac8d-f0d7a44377f9"
],
"Accept-Language": [
"en-US"
@@ -7671,16 +7545,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11767"
+ "11770"
],
"x-ms-request-id": [
- "94af680d-841e-4b40-b39b-d449e2047dd4"
+ "057f1c43-4a1e-401b-bcf6-c0a3e2882915"
],
"x-ms-correlation-request-id": [
- "94af680d-841e-4b40-b39b-d449e2047dd4"
+ "057f1c43-4a1e-401b-bcf6-c0a3e2882915"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223550Z:94af680d-841e-4b40-b39b-d449e2047dd4"
+ "NORTHCENTRALUS:20200514T212738Z:057f1c43-4a1e-401b-bcf6-c0a3e2882915"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7689,7 +7563,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:50 GMT"
+ "Thu, 14 May 2020 21:27:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7698,23 +7572,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2790c6a4-c158-4493-acf2-85eedbe13fa3"
+ "df6678ce-1c4d-471e-98a4-34c1d04a393f"
],
"Accept-Language": [
"en-US"
@@ -7734,16 +7608,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11765"
+ "11768"
],
"x-ms-request-id": [
- "ffdd54dc-d12b-4532-aef0-25a5b271f85c"
+ "4b19b466-d01c-4c81-b8bf-10c7b1fa8529"
],
"x-ms-correlation-request-id": [
- "ffdd54dc-d12b-4532-aef0-25a5b271f85c"
+ "4b19b466-d01c-4c81-b8bf-10c7b1fa8529"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223551Z:ffdd54dc-d12b-4532-aef0-25a5b271f85c"
+ "NORTHCENTRALUS:20200514T212739Z:4b19b466-d01c-4c81-b8bf-10c7b1fa8529"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7752,7 +7626,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:50 GMT"
+ "Thu, 14 May 2020 21:27:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7761,23 +7635,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3062a4b2-e951-45df-a4a8-8b92e1a9f1a7"
+ "ad75f02e-2c97-47ae-a535-cebd61cc88de"
],
"Accept-Language": [
"en-US"
@@ -7797,16 +7671,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11763"
+ "11766"
],
"x-ms-request-id": [
- "ba6838fc-e015-4f7f-a675-de62806db005"
+ "b67a9ca1-3ffb-4cbf-a4ee-0d050b6eba43"
],
"x-ms-correlation-request-id": [
- "ba6838fc-e015-4f7f-a675-de62806db005"
+ "b67a9ca1-3ffb-4cbf-a4ee-0d050b6eba43"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223551Z:ba6838fc-e015-4f7f-a675-de62806db005"
+ "NORTHCENTRALUS:20200514T212739Z:b67a9ca1-3ffb-4cbf-a4ee-0d050b6eba43"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7815,7 +7689,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:51 GMT"
+ "Thu, 14 May 2020 21:27:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7824,23 +7698,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4337d834-a674-4c37-850f-4fb934573d3b"
+ "1745fbae-f117-4a36-abcd-47393bd84ff8"
],
"Accept-Language": [
"en-US"
@@ -7860,16 +7734,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11761"
+ "11764"
],
"x-ms-request-id": [
- "0c9a8ecc-05b6-45b6-8916-d1b99f3f604c"
+ "eab67470-5bbc-4b56-824f-362c7755e4b0"
],
"x-ms-correlation-request-id": [
- "0c9a8ecc-05b6-45b6-8916-d1b99f3f604c"
+ "eab67470-5bbc-4b56-824f-362c7755e4b0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223552Z:0c9a8ecc-05b6-45b6-8916-d1b99f3f604c"
+ "NORTHCENTRALUS:20200514T212740Z:eab67470-5bbc-4b56-824f-362c7755e4b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7878,7 +7752,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:51 GMT"
+ "Thu, 14 May 2020 21:27:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7887,23 +7761,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bcdcd0b1-1b8d-443c-bf59-d0fb942b9d7e"
+ "1dffc101-52a5-4e65-aacd-ff7252b06cc2"
],
"Accept-Language": [
"en-US"
@@ -7923,16 +7797,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11759"
+ "11762"
],
"x-ms-request-id": [
- "0a9ae9bd-469d-4c12-85bb-054febff88c8"
+ "ba3deedd-3a4f-4a32-a3e6-f3753537763f"
],
"x-ms-correlation-request-id": [
- "0a9ae9bd-469d-4c12-85bb-054febff88c8"
+ "ba3deedd-3a4f-4a32-a3e6-f3753537763f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223552Z:0a9ae9bd-469d-4c12-85bb-054febff88c8"
+ "NORTHCENTRALUS:20200514T212740Z:ba3deedd-3a4f-4a32-a3e6-f3753537763f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7941,7 +7815,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:51 GMT"
+ "Thu, 14 May 2020 21:27:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7950,23 +7824,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fc6a8a61-916f-4a8b-8639-83db166a1d2a"
+ "87ae6394-5f3f-48ac-9b82-0ec8359d1528"
],
"Accept-Language": [
"en-US"
@@ -7986,16 +7860,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11757"
+ "11760"
],
"x-ms-request-id": [
- "fdbb2480-dc07-4907-9c22-f37f0dafff11"
+ "10052392-02aa-42e3-ba8e-a21ae2bc4d58"
],
"x-ms-correlation-request-id": [
- "fdbb2480-dc07-4907-9c22-f37f0dafff11"
+ "10052392-02aa-42e3-ba8e-a21ae2bc4d58"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223553Z:fdbb2480-dc07-4907-9c22-f37f0dafff11"
+ "NORTHCENTRALUS:20200514T212741Z:10052392-02aa-42e3-ba8e-a21ae2bc4d58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8004,7 +7878,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:52 GMT"
+ "Thu, 14 May 2020 21:27:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8013,23 +7887,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e138c2e-f781-47a3-8b73-fbd46abbc797"
+ "d6b75ff1-254f-400c-b547-28235df00bcd"
],
"Accept-Language": [
"en-US"
@@ -8049,16 +7923,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11755"
+ "11758"
],
"x-ms-request-id": [
- "c02244b4-b80b-4461-9fcd-7c31d417a037"
+ "6671a4c4-8a1f-477a-b243-3a2d20327051"
],
"x-ms-correlation-request-id": [
- "c02244b4-b80b-4461-9fcd-7c31d417a037"
+ "6671a4c4-8a1f-477a-b243-3a2d20327051"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223553Z:c02244b4-b80b-4461-9fcd-7c31d417a037"
+ "NORTHCENTRALUS:20200514T212741Z:6671a4c4-8a1f-477a-b243-3a2d20327051"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8067,7 +7941,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:52 GMT"
+ "Thu, 14 May 2020 21:27:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8076,23 +7950,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "737ea37f-40ac-49e9-a63f-c166e36d58c9"
+ "a015d59a-1140-4917-9993-e6dc29989d1c"
],
"Accept-Language": [
"en-US"
@@ -8112,16 +7986,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11753"
+ "11756"
],
"x-ms-request-id": [
- "6bcc0b25-066f-4efb-be23-1b7d7420ae65"
+ "70016501-df2c-44f4-9151-2f5a2e2635ff"
],
"x-ms-correlation-request-id": [
- "6bcc0b25-066f-4efb-be23-1b7d7420ae65"
+ "70016501-df2c-44f4-9151-2f5a2e2635ff"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223554Z:6bcc0b25-066f-4efb-be23-1b7d7420ae65"
+ "NORTHCENTRALUS:20200514T212741Z:70016501-df2c-44f4-9151-2f5a2e2635ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8130,7 +8004,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:53 GMT"
+ "Thu, 14 May 2020 21:27:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8139,23 +8013,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f527b93e-516b-49b8-8e21-0838fb3e5479"
+ "85a79e3a-b124-440a-ae8c-b0090156bb60"
],
"Accept-Language": [
"en-US"
@@ -8175,16 +8049,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11751"
+ "11754"
],
"x-ms-request-id": [
- "86215f42-9098-480a-9bff-9939be7db40f"
+ "8d2bce0b-43c4-49df-bb62-db5f78c3c20c"
],
"x-ms-correlation-request-id": [
- "86215f42-9098-480a-9bff-9939be7db40f"
+ "8d2bce0b-43c4-49df-bb62-db5f78c3c20c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223554Z:86215f42-9098-480a-9bff-9939be7db40f"
+ "NORTHCENTRALUS:20200514T212742Z:8d2bce0b-43c4-49df-bb62-db5f78c3c20c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8193,7 +8067,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:53 GMT"
+ "Thu, 14 May 2020 21:27:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8202,23 +8076,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47a2e5cb-57ee-4d78-b38d-bc6e5906a695"
+ "a997b5ad-2a5f-418b-ac5f-551c408e2869"
],
"Accept-Language": [
"en-US"
@@ -8238,16 +8112,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11749"
+ "11752"
],
"x-ms-request-id": [
- "6b1021b0-a523-48dc-a254-f7d60f8fa36e"
+ "6f2b2be7-b528-45ee-bef8-2196175995bf"
],
"x-ms-correlation-request-id": [
- "6b1021b0-a523-48dc-a254-f7d60f8fa36e"
+ "6f2b2be7-b528-45ee-bef8-2196175995bf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223554Z:6b1021b0-a523-48dc-a254-f7d60f8fa36e"
+ "NORTHCENTRALUS:20200514T212742Z:6f2b2be7-b528-45ee-bef8-2196175995bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8256,7 +8130,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:54 GMT"
+ "Thu, 14 May 2020 21:27:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8265,23 +8139,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad21c6c6-7224-4976-bb31-027ff96eaaea"
+ "e2b8524d-a3b6-4ce7-be03-a20fcc1127b5"
],
"Accept-Language": [
"en-US"
@@ -8301,16 +8175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11747"
+ "11750"
],
"x-ms-request-id": [
- "f06cde03-2564-4997-905a-20e2f6d75851"
+ "43a59be1-16d7-4b7b-b749-0a3147f18f6d"
],
"x-ms-correlation-request-id": [
- "f06cde03-2564-4997-905a-20e2f6d75851"
+ "43a59be1-16d7-4b7b-b749-0a3147f18f6d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223555Z:f06cde03-2564-4997-905a-20e2f6d75851"
+ "NORTHCENTRALUS:20200514T212743Z:43a59be1-16d7-4b7b-b749-0a3147f18f6d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8319,7 +8193,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:54 GMT"
+ "Thu, 14 May 2020 21:27:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8328,23 +8202,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "452df7e0-1ade-4f43-9a34-4933b75f18f7"
+ "d230693f-a5d2-48dc-8acb-4eee5c150472"
],
"Accept-Language": [
"en-US"
@@ -8364,16 +8238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11745"
+ "11748"
],
"x-ms-request-id": [
- "019d58b4-ea8e-438d-a16b-60fc7a6cc9df"
+ "6faa1921-cf31-4a0d-8b20-4c8ec418c9d2"
],
"x-ms-correlation-request-id": [
- "019d58b4-ea8e-438d-a16b-60fc7a6cc9df"
+ "6faa1921-cf31-4a0d-8b20-4c8ec418c9d2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223555Z:019d58b4-ea8e-438d-a16b-60fc7a6cc9df"
+ "NORTHCENTRALUS:20200514T212743Z:6faa1921-cf31-4a0d-8b20-4c8ec418c9d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8382,7 +8256,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:55 GMT"
+ "Thu, 14 May 2020 21:27:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8391,23 +8265,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "158a7222-d5ef-437d-9b83-eeed74a9324d"
+ "24224cb5-1c1f-4fe8-bf0b-5a179222da20"
],
"Accept-Language": [
"en-US"
@@ -8427,16 +8301,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11743"
+ "11746"
],
"x-ms-request-id": [
- "446ffafd-8465-4294-a34a-c51af6019f5f"
+ "517b95ec-3ed3-46ac-8c51-80fccde05f20"
],
"x-ms-correlation-request-id": [
- "446ffafd-8465-4294-a34a-c51af6019f5f"
+ "517b95ec-3ed3-46ac-8c51-80fccde05f20"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223556Z:446ffafd-8465-4294-a34a-c51af6019f5f"
+ "NORTHCENTRALUS:20200514T212744Z:517b95ec-3ed3-46ac-8c51-80fccde05f20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8445,7 +8319,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:55 GMT"
+ "Thu, 14 May 2020 21:27:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8454,23 +8328,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "536f2f8c-4571-4734-9b6a-e4580c28c181"
+ "fe75f272-9dbe-435b-a2a8-3d7042c6d937"
],
"Accept-Language": [
"en-US"
@@ -8490,16 +8364,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11741"
+ "11744"
],
"x-ms-request-id": [
- "24bc6723-a84d-4c38-9e42-9859a3b8a154"
+ "0f474170-5a55-4521-b693-511fe42e1d1e"
],
"x-ms-correlation-request-id": [
- "24bc6723-a84d-4c38-9e42-9859a3b8a154"
+ "0f474170-5a55-4521-b693-511fe42e1d1e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223556Z:24bc6723-a84d-4c38-9e42-9859a3b8a154"
+ "NORTHCENTRALUS:20200514T212744Z:0f474170-5a55-4521-b693-511fe42e1d1e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8508,7 +8382,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:55 GMT"
+ "Thu, 14 May 2020 21:27:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8517,23 +8391,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48a4503a-f18e-48e4-a44d-72a9135c95a2"
+ "de0d63b6-9046-40f6-981d-5fa188560c68"
],
"Accept-Language": [
"en-US"
@@ -8553,16 +8427,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11739"
+ "11742"
],
"x-ms-request-id": [
- "21d5c08b-dae3-4bc2-b04f-8f5c09245306"
+ "961d944c-9d27-4ff7-8976-b2f0beb03c8a"
],
"x-ms-correlation-request-id": [
- "21d5c08b-dae3-4bc2-b04f-8f5c09245306"
+ "961d944c-9d27-4ff7-8976-b2f0beb03c8a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223557Z:21d5c08b-dae3-4bc2-b04f-8f5c09245306"
+ "NORTHCENTRALUS:20200514T212745Z:961d944c-9d27-4ff7-8976-b2f0beb03c8a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8571,7 +8445,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:56 GMT"
+ "Thu, 14 May 2020 21:27:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8580,23 +8454,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "150c6db7-1154-4b04-b15d-ea7f70bf84f1"
+ "11a5b53c-0d9a-4931-9649-60c4dad62451"
],
"Accept-Language": [
"en-US"
@@ -8616,16 +8490,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11737"
+ "11740"
],
"x-ms-request-id": [
- "de336543-5476-41a7-9375-d4ceeeb9090e"
+ "a19a2d08-7d86-4aef-81bd-9bd064109ea6"
],
"x-ms-correlation-request-id": [
- "de336543-5476-41a7-9375-d4ceeeb9090e"
+ "a19a2d08-7d86-4aef-81bd-9bd064109ea6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223557Z:de336543-5476-41a7-9375-d4ceeeb9090e"
+ "NORTHCENTRALUS:20200514T212745Z:a19a2d08-7d86-4aef-81bd-9bd064109ea6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8634,7 +8508,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:56 GMT"
+ "Thu, 14 May 2020 21:27:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8643,23 +8517,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62a54c46-3548-41e9-ae4f-daae91ae3866"
+ "af016fa7-a0d2-4c38-8d31-06d261ed4c84"
],
"Accept-Language": [
"en-US"
@@ -8679,16 +8553,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11735"
+ "11738"
],
"x-ms-request-id": [
- "82c0bf80-bb04-4e16-8613-68dc7767a000"
+ "7f366fc9-3998-4a72-ae7e-033855e1be6e"
],
"x-ms-correlation-request-id": [
- "82c0bf80-bb04-4e16-8613-68dc7767a000"
+ "7f366fc9-3998-4a72-ae7e-033855e1be6e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223557Z:82c0bf80-bb04-4e16-8613-68dc7767a000"
+ "NORTHCENTRALUS:20200514T212745Z:7f366fc9-3998-4a72-ae7e-033855e1be6e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8697,7 +8571,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:57 GMT"
+ "Thu, 14 May 2020 21:27:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8706,23 +8580,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "adcb9cc7-6bdf-4d5d-bb17-f5c5f3b949e0"
+ "7fd16013-418b-467d-9101-7fa1e447834b"
],
"Accept-Language": [
"en-US"
@@ -8742,16 +8616,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11733"
+ "11736"
],
"x-ms-request-id": [
- "156340f8-54ae-4553-93eb-0c7af977d38c"
+ "a7de895f-5c8a-40a0-ba18-9157d7821f03"
],
"x-ms-correlation-request-id": [
- "156340f8-54ae-4553-93eb-0c7af977d38c"
+ "a7de895f-5c8a-40a0-ba18-9157d7821f03"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223558Z:156340f8-54ae-4553-93eb-0c7af977d38c"
+ "NORTHCENTRALUS:20200514T212746Z:a7de895f-5c8a-40a0-ba18-9157d7821f03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8760,7 +8634,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:57 GMT"
+ "Thu, 14 May 2020 21:27:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8769,23 +8643,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "952f977e-8b29-4559-bec1-cd000c15b707"
+ "d1dca464-590b-418c-a44d-62b84861d7f2"
],
"Accept-Language": [
"en-US"
@@ -8805,16 +8679,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11731"
+ "11734"
],
"x-ms-request-id": [
- "b3b2d9e0-c571-4405-8cdb-4c2e739bd2e2"
+ "df4e3c10-b7f6-43f2-97d3-4d3c29b0ba2f"
],
"x-ms-correlation-request-id": [
- "b3b2d9e0-c571-4405-8cdb-4c2e739bd2e2"
+ "df4e3c10-b7f6-43f2-97d3-4d3c29b0ba2f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223558Z:b3b2d9e0-c571-4405-8cdb-4c2e739bd2e2"
+ "NORTHCENTRALUS:20200514T212746Z:df4e3c10-b7f6-43f2-97d3-4d3c29b0ba2f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8823,7 +8697,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:58 GMT"
+ "Thu, 14 May 2020 21:27:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8832,23 +8706,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "826"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "543a3bcc-3b68-442a-a72d-5059613c3318"
+ "b1c4b3d6-079c-40d0-9a36-329a61a3f157"
],
"Accept-Language": [
"en-US"
@@ -8868,10855 +8742,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11729"
- ],
- "x-ms-request-id": [
- "a40345b7-1f44-4f83-b59a-67bb5034125a"
- ],
- "x-ms-correlation-request-id": [
- "a40345b7-1f44-4f83-b59a-67bb5034125a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223559Z:a40345b7-1f44-4f83-b59a-67bb5034125a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:58 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0590752Z\",\r\n \"duration\": \"PT44.9310061S\",\r\n \"trackingId\": \"496da590-7ad2-48fb-83b5-7e2370e6570e\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8983225a-0b54-44a7-b894-e1e3b7e2c09f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11727"
- ],
- "x-ms-request-id": [
- "15bd1e5b-deee-4b85-8aa6-572d917cf478"
- ],
- "x-ms-correlation-request-id": [
- "15bd1e5b-deee-4b85-8aa6-572d917cf478"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223559Z:15bd1e5b-deee-4b85-8aa6-572d917cf478"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:58 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0ce42ffe-2322-41bf-9db4-afb07151ba92"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11725"
- ],
- "x-ms-request-id": [
- "05c0e4b4-9f3a-4b6b-90bf-107c700e5108"
- ],
- "x-ms-correlation-request-id": [
- "05c0e4b4-9f3a-4b6b-90bf-107c700e5108"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223600Z:05c0e4b4-9f3a-4b6b-90bf-107c700e5108"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:59 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6a4c3874-5a67-4d0e-9b7a-979fd2d661c8"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11723"
- ],
- "x-ms-request-id": [
- "b1c44e79-b842-4433-b3a7-16d9acc5b20c"
- ],
- "x-ms-correlation-request-id": [
- "b1c44e79-b842-4433-b3a7-16d9acc5b20c"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223600Z:b1c44e79-b842-4433-b3a7-16d9acc5b20c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:59 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4926d9e4-bef8-4756-84c3-1595791526be"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11721"
- ],
- "x-ms-request-id": [
- "bfc355a1-0b57-48a7-9ae1-b32ecca1ef49"
- ],
- "x-ms-correlation-request-id": [
- "bfc355a1-0b57-48a7-9ae1-b32ecca1ef49"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223600Z:bfc355a1-0b57-48a7-9ae1-b32ecca1ef49"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:00 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b721fbcd-9e00-4335-a5f0-41a7e80a8e5c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11719"
- ],
- "x-ms-request-id": [
- "d21deede-b0aa-4d2f-b86b-ed5d82f25c82"
- ],
- "x-ms-correlation-request-id": [
- "d21deede-b0aa-4d2f-b86b-ed5d82f25c82"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223601Z:d21deede-b0aa-4d2f-b86b-ed5d82f25c82"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:00 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fdd54935-f75d-416a-a969-5cf2b52e781b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11717"
- ],
- "x-ms-request-id": [
- "7a580bba-5c2c-4c66-93e3-26e6709e516c"
- ],
- "x-ms-correlation-request-id": [
- "7a580bba-5c2c-4c66-93e3-26e6709e516c"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223601Z:7a580bba-5c2c-4c66-93e3-26e6709e516c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:01 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3e12bf28-c6f2-4cba-830d-9106cd9f548f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11715"
- ],
- "x-ms-request-id": [
- "ebb2be1d-f426-49a5-b323-379b2e7a78f3"
- ],
- "x-ms-correlation-request-id": [
- "ebb2be1d-f426-49a5-b323-379b2e7a78f3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223602Z:ebb2be1d-f426-49a5-b323-379b2e7a78f3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:01 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "39a9ebe6-4967-4c40-85e2-fc78d24d6573"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11713"
- ],
- "x-ms-request-id": [
- "c6c6fe2b-cbbe-46b6-b233-a94c10ebae60"
- ],
- "x-ms-correlation-request-id": [
- "c6c6fe2b-cbbe-46b6-b233-a94c10ebae60"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223602Z:c6c6fe2b-cbbe-46b6-b233-a94c10ebae60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:01 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a38c4470-7548-47f6-9479-32eca447b2f0"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11711"
- ],
- "x-ms-request-id": [
- "6ddfb355-9087-452d-a22a-3ee6d155ba04"
- ],
- "x-ms-correlation-request-id": [
- "6ddfb355-9087-452d-a22a-3ee6d155ba04"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223603Z:6ddfb355-9087-452d-a22a-3ee6d155ba04"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:02 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f924034f-89cb-4bf6-934c-8764375ba57d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11709"
- ],
- "x-ms-request-id": [
- "492275db-7e84-4b66-b682-9423364a0a3a"
- ],
- "x-ms-correlation-request-id": [
- "492275db-7e84-4b66-b682-9423364a0a3a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223603Z:492275db-7e84-4b66-b682-9423364a0a3a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:02 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b7f01175-539d-4c62-8a78-a22b09e6c59f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11707"
- ],
- "x-ms-request-id": [
- "f2b12d36-052b-400f-a2df-7d2e708f5014"
- ],
- "x-ms-correlation-request-id": [
- "f2b12d36-052b-400f-a2df-7d2e708f5014"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223603Z:f2b12d36-052b-400f-a2df-7d2e708f5014"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:03 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6cb8fb4f-8df3-46c1-83d2-b279310acefc"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11705"
- ],
- "x-ms-request-id": [
- "73d3b6f7-a3e9-48c2-9163-abdf05d8f363"
- ],
- "x-ms-correlation-request-id": [
- "73d3b6f7-a3e9-48c2-9163-abdf05d8f363"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223604Z:73d3b6f7-a3e9-48c2-9163-abdf05d8f363"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:03 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c4887b32-69be-4a22-9496-c673f554a2bb"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11703"
- ],
- "x-ms-request-id": [
- "4e23fb2e-288a-498f-95da-0ed8056c4688"
- ],
- "x-ms-correlation-request-id": [
- "4e23fb2e-288a-498f-95da-0ed8056c4688"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223604Z:4e23fb2e-288a-498f-95da-0ed8056c4688"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:04 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b95cda94-0c3f-44d1-95b2-ee9021d1353a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11701"
- ],
- "x-ms-request-id": [
- "49d41c21-b108-454e-a99c-bd512e58b616"
- ],
- "x-ms-correlation-request-id": [
- "49d41c21-b108-454e-a99c-bd512e58b616"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223605Z:49d41c21-b108-454e-a99c-bd512e58b616"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:04 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ace014cf-ddc4-4c58-b503-6582140a0e3c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11699"
- ],
- "x-ms-request-id": [
- "8e76407a-c651-4330-9863-8b1ebce0fb62"
- ],
- "x-ms-correlation-request-id": [
- "8e76407a-c651-4330-9863-8b1ebce0fb62"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223605Z:8e76407a-c651-4330-9863-8b1ebce0fb62"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:04 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d7997706-4c55-475b-8cdd-b1b4a4898135"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11697"
- ],
- "x-ms-request-id": [
- "d140bc2f-01f0-44c6-ab4a-878b82b0b3ad"
- ],
- "x-ms-correlation-request-id": [
- "d140bc2f-01f0-44c6-ab4a-878b82b0b3ad"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223606Z:d140bc2f-01f0-44c6-ab4a-878b82b0b3ad"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:05 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "37418dd8-61ec-41f2-966a-c8c2e0894861"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11695"
- ],
- "x-ms-request-id": [
- "0b74e34b-3efb-4613-8a9a-3c31bc7abad9"
- ],
- "x-ms-correlation-request-id": [
- "0b74e34b-3efb-4613-8a9a-3c31bc7abad9"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223606Z:0b74e34b-3efb-4613-8a9a-3c31bc7abad9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:05 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7fab1b67-0fe6-485a-b922-b1ad63331c10"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11693"
- ],
- "x-ms-request-id": [
- "bba65cd0-dafa-4738-8421-2cb89622f2a3"
- ],
- "x-ms-correlation-request-id": [
- "bba65cd0-dafa-4738-8421-2cb89622f2a3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223606Z:bba65cd0-dafa-4738-8421-2cb89622f2a3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:06 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6b94e913-2797-4ff0-990a-8b84f2ff2b28"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11691"
- ],
- "x-ms-request-id": [
- "d70eafae-865f-45ac-9651-5563936e0c14"
- ],
- "x-ms-correlation-request-id": [
- "d70eafae-865f-45ac-9651-5563936e0c14"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223607Z:d70eafae-865f-45ac-9651-5563936e0c14"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:06 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bfdd31b7-2f62-4146-8cc0-0561f2995a21"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11689"
- ],
- "x-ms-request-id": [
- "14d0af09-2ef4-4812-8dd2-03b27d130ba2"
- ],
- "x-ms-correlation-request-id": [
- "14d0af09-2ef4-4812-8dd2-03b27d130ba2"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223607Z:14d0af09-2ef4-4812-8dd2-03b27d130ba2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:06 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1a6ed79b-80e8-469a-9263-2aaedb1ae997"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11687"
- ],
- "x-ms-request-id": [
- "4cad90bb-5621-4121-ae2b-2a87f1c65bcf"
- ],
- "x-ms-correlation-request-id": [
- "4cad90bb-5621-4121-ae2b-2a87f1c65bcf"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223608Z:4cad90bb-5621-4121-ae2b-2a87f1c65bcf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:07 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "04987d0a-29b5-4ff6-b909-f098a35e5c09"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11685"
- ],
- "x-ms-request-id": [
- "89dc602f-768e-4bed-bad5-a42df654ff0d"
- ],
- "x-ms-correlation-request-id": [
- "89dc602f-768e-4bed-bad5-a42df654ff0d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223608Z:89dc602f-768e-4bed-bad5-a42df654ff0d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:07 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "059f5270-469c-485d-866f-a94cbabf9b62"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11683"
- ],
- "x-ms-request-id": [
- "712d4f3f-4453-4bb8-83a4-4f2142d49e44"
- ],
- "x-ms-correlation-request-id": [
- "712d4f3f-4453-4bb8-83a4-4f2142d49e44"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223609Z:712d4f3f-4453-4bb8-83a4-4f2142d49e44"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:08 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9037b3f6-8f9f-4ae5-8b2f-8102b29c2348"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11681"
- ],
- "x-ms-request-id": [
- "fe41043b-3486-4b91-bbba-b862500ca4d9"
- ],
- "x-ms-correlation-request-id": [
- "fe41043b-3486-4b91-bbba-b862500ca4d9"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223609Z:fe41043b-3486-4b91-bbba-b862500ca4d9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:08 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "681167d0-8ae5-4b13-af93-dfb8a60bbb39"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11679"
- ],
- "x-ms-request-id": [
- "d4946315-abcb-4c94-bb02-87079e3abb00"
- ],
- "x-ms-correlation-request-id": [
- "d4946315-abcb-4c94-bb02-87079e3abb00"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223609Z:d4946315-abcb-4c94-bb02-87079e3abb00"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:09 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "484b5035-8dca-4d6f-93c6-823c6402c53c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11677"
- ],
- "x-ms-request-id": [
- "2ca9570b-efd3-4f23-bd46-255233c99bdc"
- ],
- "x-ms-correlation-request-id": [
- "2ca9570b-efd3-4f23-bd46-255233c99bdc"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223610Z:2ca9570b-efd3-4f23-bd46-255233c99bdc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:09 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "829"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.3878854Z\",\r\n \"duration\": \"PT56.2598163S\",\r\n \"trackingId\": \"1ed24ef8-3af4-4eb8-a1f6-795fcfd06537\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1f4fef48-8340-483c-ab78-8a4a83534833"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11675"
- ],
- "x-ms-request-id": [
- "7f707495-7fc4-4fc2-ab3f-d6bca2512eff"
- ],
- "x-ms-correlation-request-id": [
- "7f707495-7fc4-4fc2-ab3f-d6bca2512eff"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223610Z:7f707495-7fc4-4fc2-ab3f-d6bca2512eff"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:09 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1a54c792-fc13-44f9-a6cb-8a0524d0f9a7"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11673"
- ],
- "x-ms-request-id": [
- "d205f0aa-9934-4e6b-819d-771c1b7bed08"
- ],
- "x-ms-correlation-request-id": [
- "d205f0aa-9934-4e6b-819d-771c1b7bed08"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223611Z:d205f0aa-9934-4e6b-819d-771c1b7bed08"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:10 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "53969324-45a5-4152-ba08-8b215dc82dda"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11671"
- ],
- "x-ms-request-id": [
- "782daf9f-5610-4c68-9c52-10185b57d61d"
- ],
- "x-ms-correlation-request-id": [
- "782daf9f-5610-4c68-9c52-10185b57d61d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223611Z:782daf9f-5610-4c68-9c52-10185b57d61d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:10 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "11a31dff-bc38-401f-9fbf-795b03f930f6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11669"
- ],
- "x-ms-request-id": [
- "b2a1191b-dbb4-4d62-8892-fb4fd33ff7f8"
- ],
- "x-ms-correlation-request-id": [
- "b2a1191b-dbb4-4d62-8892-fb4fd33ff7f8"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223611Z:b2a1191b-dbb4-4d62-8892-fb4fd33ff7f8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:11 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "24bdceb0-9c68-4e45-baa0-5c8090666c26"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11667"
- ],
- "x-ms-request-id": [
- "fb169ca7-352e-46e1-a66f-8d679665f144"
- ],
- "x-ms-correlation-request-id": [
- "fb169ca7-352e-46e1-a66f-8d679665f144"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223612Z:fb169ca7-352e-46e1-a66f-8d679665f144"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:11 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fa1f52b6-800f-40bf-9780-acf8c1fd488b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11665"
- ],
- "x-ms-request-id": [
- "04cd0940-dce1-48ca-b2be-fdef50b32e6e"
- ],
- "x-ms-correlation-request-id": [
- "04cd0940-dce1-48ca-b2be-fdef50b32e6e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223612Z:04cd0940-dce1-48ca-b2be-fdef50b32e6e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:11 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "62f70385-4b2d-4445-80f4-05f6b91cbd06"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11663"
- ],
- "x-ms-request-id": [
- "0dc8f37a-a8b0-4a29-a005-f2364a373aa8"
- ],
- "x-ms-correlation-request-id": [
- "0dc8f37a-a8b0-4a29-a005-f2364a373aa8"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223613Z:0dc8f37a-a8b0-4a29-a005-f2364a373aa8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:12 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b3844968-84f4-4984-a7ca-fb6b0da92b7a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11661"
- ],
- "x-ms-request-id": [
- "334a7804-453a-44e4-92b0-7b5aa54dab95"
- ],
- "x-ms-correlation-request-id": [
- "334a7804-453a-44e4-92b0-7b5aa54dab95"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223613Z:334a7804-453a-44e4-92b0-7b5aa54dab95"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:12 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d1ca71fc-099c-4ebe-acc1-e33ff6e9679f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11659"
- ],
- "x-ms-request-id": [
- "cf48d1d3-a357-4413-ac7e-723bd3416f7b"
- ],
- "x-ms-correlation-request-id": [
- "cf48d1d3-a357-4413-ac7e-723bd3416f7b"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223614Z:cf48d1d3-a357-4413-ac7e-723bd3416f7b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:13 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "84879e39-f819-46c5-9027-e5027b394a52"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11657"
- ],
- "x-ms-request-id": [
- "41b277fb-b6a8-46ae-a02b-904b1323f6d3"
- ],
- "x-ms-correlation-request-id": [
- "41b277fb-b6a8-46ae-a02b-904b1323f6d3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223614Z:41b277fb-b6a8-46ae-a02b-904b1323f6d3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:13 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0737745f-5632-4b25-83a9-cf5a7671e952"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11655"
- ],
- "x-ms-request-id": [
- "c9a815e2-b224-4fc9-876d-993cc3743428"
- ],
- "x-ms-correlation-request-id": [
- "c9a815e2-b224-4fc9-876d-993cc3743428"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223614Z:c9a815e2-b224-4fc9-876d-993cc3743428"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:13 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b165af7c-f049-4089-8563-407e9df6f338"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11653"
- ],
- "x-ms-request-id": [
- "0b6e4a47-5148-4306-8be8-6b8bf1288952"
- ],
- "x-ms-correlation-request-id": [
- "0b6e4a47-5148-4306-8be8-6b8bf1288952"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223615Z:0b6e4a47-5148-4306-8be8-6b8bf1288952"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:14 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "31d7ad0b-a6db-434f-ab1b-b83018b7c217"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11651"
- ],
- "x-ms-request-id": [
- "2140083e-3b1b-4020-9c9a-d8ca0ad8575e"
- ],
- "x-ms-correlation-request-id": [
- "2140083e-3b1b-4020-9c9a-d8ca0ad8575e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223615Z:2140083e-3b1b-4020-9c9a-d8ca0ad8575e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:14 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3fd82890-f18f-4d49-b2c7-18cb0bedef09"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11649"
- ],
- "x-ms-request-id": [
- "0ec78dd8-54c4-46da-bcc1-5f251876fc49"
- ],
- "x-ms-correlation-request-id": [
- "0ec78dd8-54c4-46da-bcc1-5f251876fc49"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223616Z:0ec78dd8-54c4-46da-bcc1-5f251876fc49"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:15 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e5221bcd-d547-43a9-94c0-0ad733928f3b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11647"
- ],
- "x-ms-request-id": [
- "1bf355a0-808e-4ff5-bfdb-9311e3dcf2aa"
- ],
- "x-ms-correlation-request-id": [
- "1bf355a0-808e-4ff5-bfdb-9311e3dcf2aa"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223616Z:1bf355a0-808e-4ff5-bfdb-9311e3dcf2aa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:15 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e5f8b3e8-7db2-41ec-94e8-7c2179567bee"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11645"
- ],
- "x-ms-request-id": [
- "52ccfae8-f790-4206-b3bc-d0644d2b4f9d"
- ],
- "x-ms-correlation-request-id": [
- "52ccfae8-f790-4206-b3bc-d0644d2b4f9d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223616Z:52ccfae8-f790-4206-b3bc-d0644d2b4f9d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:16 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "35f8237e-fb51-4c47-a5fd-ad0dcc9ddd80"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11643"
- ],
- "x-ms-request-id": [
- "8775fe97-e44b-44f2-b7fd-2c2746811d50"
- ],
- "x-ms-correlation-request-id": [
- "8775fe97-e44b-44f2-b7fd-2c2746811d50"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223617Z:8775fe97-e44b-44f2-b7fd-2c2746811d50"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:16 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d06ad510-fd06-45d5-84e5-b56dd33966be"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11641"
- ],
- "x-ms-request-id": [
- "97193e5f-b9d7-4af8-80f3-bcd2116ebcb0"
- ],
- "x-ms-correlation-request-id": [
- "97193e5f-b9d7-4af8-80f3-bcd2116ebcb0"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223617Z:97193e5f-b9d7-4af8-80f3-bcd2116ebcb0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:16 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "75806947-737a-458a-a2a0-f30b9241b126"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11639"
- ],
- "x-ms-request-id": [
- "c4984a4a-e55e-4416-b75e-7cc809b66d52"
- ],
- "x-ms-correlation-request-id": [
- "c4984a4a-e55e-4416-b75e-7cc809b66d52"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223618Z:c4984a4a-e55e-4416-b75e-7cc809b66d52"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:17 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "50007dd8-fa93-43c0-addb-2a788a289b4b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11637"
- ],
- "x-ms-request-id": [
- "a263f511-185d-49dc-98f8-dad81d3c8031"
- ],
- "x-ms-correlation-request-id": [
- "a263f511-185d-49dc-98f8-dad81d3c8031"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223618Z:a263f511-185d-49dc-98f8-dad81d3c8031"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:17 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "aa3211f5-8b36-4c2f-b21d-cb879b00ee1f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11635"
- ],
- "x-ms-request-id": [
- "9eec0256-b969-4735-ba35-912d7d419577"
- ],
- "x-ms-correlation-request-id": [
- "9eec0256-b969-4735-ba35-912d7d419577"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223619Z:9eec0256-b969-4735-ba35-912d7d419577"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:18 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "eef9f67a-73c6-42bd-bc47-1cc86ae067b6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11633"
- ],
- "x-ms-request-id": [
- "83cc3223-9b91-415a-a829-67c69b47e765"
- ],
- "x-ms-correlation-request-id": [
- "83cc3223-9b91-415a-a829-67c69b47e765"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223619Z:83cc3223-9b91-415a-a829-67c69b47e765"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:18 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0e629b87-f759-4d5c-b84b-58f6b72a6ade"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11631"
- ],
- "x-ms-request-id": [
- "d4075076-620f-4b6c-b376-2d68ef3691e2"
- ],
- "x-ms-correlation-request-id": [
- "d4075076-620f-4b6c-b376-2d68ef3691e2"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223619Z:d4075076-620f-4b6c-b376-2d68ef3691e2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:18 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8827d092-2253-4bbd-b6b4-bcd305f7fe96"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11629"
- ],
- "x-ms-request-id": [
- "f7807890-e975-436b-8039-13f8f928b237"
- ],
- "x-ms-correlation-request-id": [
- "f7807890-e975-436b-8039-13f8f928b237"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223620Z:f7807890-e975-436b-8039-13f8f928b237"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:19 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "97e4910b-63b3-40f0-bf17-395ed017987a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11627"
- ],
- "x-ms-request-id": [
- "46825740-188e-4ebf-9f7a-85cd83cd7d56"
- ],
- "x-ms-correlation-request-id": [
- "46825740-188e-4ebf-9f7a-85cd83cd7d56"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223620Z:46825740-188e-4ebf-9f7a-85cd83cd7d56"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:19 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5d7d90c6-82d6-48ae-8729-363e586893f6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11625"
- ],
- "x-ms-request-id": [
- "c36cb595-1c96-4ff0-b330-d2d7e51bb08f"
- ],
- "x-ms-correlation-request-id": [
- "c36cb595-1c96-4ff0-b330-d2d7e51bb08f"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223621Z:c36cb595-1c96-4ff0-b330-d2d7e51bb08f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:20 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "25820452-2c77-4808-9abd-307e26d179e9"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11623"
- ],
- "x-ms-request-id": [
- "00e7b061-7bfa-4beb-a19f-4dde21db37f2"
- ],
- "x-ms-correlation-request-id": [
- "00e7b061-7bfa-4beb-a19f-4dde21db37f2"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223621Z:00e7b061-7bfa-4beb-a19f-4dde21db37f2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:20 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "830"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.2974288Z\",\r\n \"duration\": \"PT1M7.1693597S\",\r\n \"trackingId\": \"27b40f2f-7cf8-4472-890a-130561f8906c\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "96e31bb0-99e9-482e-8226-55063dee18db"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11621"
- ],
- "x-ms-request-id": [
- "9938c867-da12-4882-a739-82c49ffa9998"
- ],
- "x-ms-correlation-request-id": [
- "9938c867-da12-4882-a739-82c49ffa9998"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223622Z:9938c867-da12-4882-a739-82c49ffa9998"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:21 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d14e4f47-75c2-45e7-8306-d4abc177ecb6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11619"
- ],
- "x-ms-request-id": [
- "cace78ca-8498-4a98-b1df-5142eb31f6f3"
- ],
- "x-ms-correlation-request-id": [
- "cace78ca-8498-4a98-b1df-5142eb31f6f3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223622Z:cace78ca-8498-4a98-b1df-5142eb31f6f3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:21 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "84404e14-9404-4021-bac8-46935c20cab9"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11617"
- ],
- "x-ms-request-id": [
- "4f157d5b-ce8e-4302-b1c8-3a4f608b733f"
- ],
- "x-ms-correlation-request-id": [
- "4f157d5b-ce8e-4302-b1c8-3a4f608b733f"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223622Z:4f157d5b-ce8e-4302-b1c8-3a4f608b733f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:21 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0343b99b-57c0-40a5-b542-21c76738812b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11615"
- ],
- "x-ms-request-id": [
- "033fda53-d250-4d97-acf9-0c8883435019"
- ],
- "x-ms-correlation-request-id": [
- "033fda53-d250-4d97-acf9-0c8883435019"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223623Z:033fda53-d250-4d97-acf9-0c8883435019"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:23 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0d9c8ff8-b4b1-4300-99b1-4aa2e6458873"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11613"
- ],
- "x-ms-request-id": [
- "71c8dd00-84ad-4026-8182-7891c55ee618"
- ],
- "x-ms-correlation-request-id": [
- "71c8dd00-84ad-4026-8182-7891c55ee618"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223623Z:71c8dd00-84ad-4026-8182-7891c55ee618"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:23 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "663d0d81-fd71-45a5-98b7-2dbf73dd9496"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11611"
- ],
- "x-ms-request-id": [
- "48a1349e-463f-46c9-b80e-87b37ebae25d"
- ],
- "x-ms-correlation-request-id": [
- "48a1349e-463f-46c9-b80e-87b37ebae25d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223624Z:48a1349e-463f-46c9-b80e-87b37ebae25d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:24 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2909fd56-475d-4c9d-8e55-5738a848eb35"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11609"
- ],
- "x-ms-request-id": [
- "c2766f87-5d8b-42e3-8157-94e8a26f4dca"
- ],
- "x-ms-correlation-request-id": [
- "c2766f87-5d8b-42e3-8157-94e8a26f4dca"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223624Z:c2766f87-5d8b-42e3-8157-94e8a26f4dca"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:24 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2ae42bfd-bb2d-413b-94c8-eb1f7fe9a8be"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11607"
- ],
- "x-ms-request-id": [
- "e8714f67-ecba-4496-bd01-d9c848acb47f"
- ],
- "x-ms-correlation-request-id": [
- "e8714f67-ecba-4496-bd01-d9c848acb47f"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223624Z:e8714f67-ecba-4496-bd01-d9c848acb47f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:24 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4b12970c-a595-450c-9ccd-2c72bdfc3fc7"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11605"
- ],
- "x-ms-request-id": [
- "c5d159ed-8af0-4825-b5ef-25109f4ef904"
- ],
- "x-ms-correlation-request-id": [
- "c5d159ed-8af0-4825-b5ef-25109f4ef904"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223625Z:c5d159ed-8af0-4825-b5ef-25109f4ef904"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:25 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8426bfab-7b24-4974-8255-e05caba9f6ca"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11603"
- ],
- "x-ms-request-id": [
- "3f38f905-0de6-4dd0-aecc-c6b806e5cdda"
- ],
- "x-ms-correlation-request-id": [
- "3f38f905-0de6-4dd0-aecc-c6b806e5cdda"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223625Z:3f38f905-0de6-4dd0-aecc-c6b806e5cdda"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:25 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c3d28422-f24d-4592-86e0-7314514ed3a2"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11601"
- ],
- "x-ms-request-id": [
- "f7250cea-1770-445d-acc8-dcc794b94177"
- ],
- "x-ms-correlation-request-id": [
- "f7250cea-1770-445d-acc8-dcc794b94177"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223626Z:f7250cea-1770-445d-acc8-dcc794b94177"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:26 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "69e4c34f-de28-4092-bd96-a41432dc8edb"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11599"
- ],
- "x-ms-request-id": [
- "9626cd16-b7cf-426a-8b0d-2d4c697c03f5"
- ],
- "x-ms-correlation-request-id": [
- "9626cd16-b7cf-426a-8b0d-2d4c697c03f5"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223626Z:9626cd16-b7cf-426a-8b0d-2d4c697c03f5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:26 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "43216e59-0cdf-4023-950b-094e85d8db42"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11597"
- ],
- "x-ms-request-id": [
- "a32da773-fcd6-4a0b-a951-6c444518be6f"
- ],
- "x-ms-correlation-request-id": [
- "a32da773-fcd6-4a0b-a951-6c444518be6f"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223627Z:a32da773-fcd6-4a0b-a951-6c444518be6f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:27 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "80aefcb5-6002-4d19-ac61-6f0f94f661ec"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11595"
- ],
- "x-ms-request-id": [
- "4f8b9a7c-5276-46c5-a692-60e1d41842d0"
- ],
- "x-ms-correlation-request-id": [
- "4f8b9a7c-5276-46c5-a692-60e1d41842d0"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223627Z:4f8b9a7c-5276-46c5-a692-60e1d41842d0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:27 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "be43b738-e453-4791-9554-d6f9ad982d8e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11593"
- ],
- "x-ms-request-id": [
- "b5dd5072-1602-4e16-8db8-884eff78701e"
- ],
- "x-ms-correlation-request-id": [
- "b5dd5072-1602-4e16-8db8-884eff78701e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223627Z:b5dd5072-1602-4e16-8db8-884eff78701e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:27 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "845249a8-285b-4d9e-813f-6947e1cf21a0"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11591"
- ],
- "x-ms-request-id": [
- "9eb9ba5b-335d-4ada-be63-d32b907c85ef"
- ],
- "x-ms-correlation-request-id": [
- "9eb9ba5b-335d-4ada-be63-d32b907c85ef"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223628Z:9eb9ba5b-335d-4ada-be63-d32b907c85ef"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:28 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "71f7eb83-d2f1-4245-95a9-0a86d54f6d39"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11589"
- ],
- "x-ms-request-id": [
- "0c11436c-312d-441d-bec6-08fe8618d20c"
- ],
- "x-ms-correlation-request-id": [
- "0c11436c-312d-441d-bec6-08fe8618d20c"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223628Z:0c11436c-312d-441d-bec6-08fe8618d20c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:28 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d42225d0-6dae-46c7-b171-a9326a48209c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11587"
- ],
- "x-ms-request-id": [
- "521b8d68-c204-45b0-bbe6-01f3bf65eaad"
- ],
- "x-ms-correlation-request-id": [
- "521b8d68-c204-45b0-bbe6-01f3bf65eaad"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223629Z:521b8d68-c204-45b0-bbe6-01f3bf65eaad"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:29 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8217fe15-d6a2-4a93-b6cd-06f607c10199"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11585"
- ],
- "x-ms-request-id": [
- "88a90462-dc4f-451e-a7cb-013c8c26d4ea"
- ],
- "x-ms-correlation-request-id": [
- "88a90462-dc4f-451e-a7cb-013c8c26d4ea"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223629Z:88a90462-dc4f-451e-a7cb-013c8c26d4ea"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:29 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2f004404-cadd-4667-b9fc-7c128ce2619a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11583"
- ],
- "x-ms-request-id": [
- "56024069-d460-44e7-8f56-4dc026ca873d"
- ],
- "x-ms-correlation-request-id": [
- "56024069-d460-44e7-8f56-4dc026ca873d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223630Z:56024069-d460-44e7-8f56-4dc026ca873d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:29 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "23ac1526-f751-4925-80cf-929a99366b56"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11581"
- ],
- "x-ms-request-id": [
- "e0f9f27a-0e71-464d-8ed3-44797d29e3b7"
- ],
- "x-ms-correlation-request-id": [
- "e0f9f27a-0e71-464d-8ed3-44797d29e3b7"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223630Z:e0f9f27a-0e71-464d-8ed3-44797d29e3b7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:30 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1b36a224-e883-4f1e-beb0-3b8f368281d8"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11579"
- ],
- "x-ms-request-id": [
- "b4692854-24f7-4698-8bbf-444c0362917b"
- ],
- "x-ms-correlation-request-id": [
- "b4692854-24f7-4698-8bbf-444c0362917b"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223630Z:b4692854-24f7-4698-8bbf-444c0362917b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:30 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4989ca67-22d5-48cb-90b4-0cea25712a70"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11577"
- ],
- "x-ms-request-id": [
- "8335f08c-4d1f-4deb-bc55-46d84e0af706"
- ],
- "x-ms-correlation-request-id": [
- "8335f08c-4d1f-4deb-bc55-46d84e0af706"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223631Z:8335f08c-4d1f-4deb-bc55-46d84e0af706"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:31 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "90144aaa-054c-45e5-8679-57628ee85f7d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11575"
- ],
- "x-ms-request-id": [
- "c5c031b5-0043-44da-95d9-c8cc1889900a"
- ],
- "x-ms-correlation-request-id": [
- "c5c031b5-0043-44da-95d9-c8cc1889900a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223631Z:c5c031b5-0043-44da-95d9-c8cc1889900a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:31 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "575f3373-3a20-40ef-a83b-6e56721d21cf"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11573"
- ],
- "x-ms-request-id": [
- "1851a66a-d230-4972-8b2e-f1cc691e8701"
- ],
- "x-ms-correlation-request-id": [
- "1851a66a-d230-4972-8b2e-f1cc691e8701"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223632Z:1851a66a-d230-4972-8b2e-f1cc691e8701"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:31 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7dcab034-755e-4a31-bfae-df74b01b92b9"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11571"
- ],
- "x-ms-request-id": [
- "ceb6a9bc-7f82-4e4b-8a1c-fec239b77c3e"
- ],
- "x-ms-correlation-request-id": [
- "ceb6a9bc-7f82-4e4b-8a1c-fec239b77c3e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223632Z:ceb6a9bc-7f82-4e4b-8a1c-fec239b77c3e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:32 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "075fc7a2-6d67-4b65-8808-dc55a0d7de14"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11569"
- ],
- "x-ms-request-id": [
- "1480c747-3e4f-4944-a3ac-ca80653796d5"
- ],
- "x-ms-correlation-request-id": [
- "1480c747-3e4f-4944-a3ac-ca80653796d5"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223632Z:1480c747-3e4f-4944-a3ac-ca80653796d5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:32 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "447a32ce-93fc-40da-ab48-cf355688c5dd"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11567"
- ],
- "x-ms-request-id": [
- "f3cc4c34-f3c6-4692-b037-390f5dc28918"
- ],
- "x-ms-correlation-request-id": [
- "f3cc4c34-f3c6-4692-b037-390f5dc28918"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223633Z:f3cc4c34-f3c6-4692-b037-390f5dc28918"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:33 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b2cd6bd5-7f50-4983-b8ba-2f70bc3e6c3f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11565"
- ],
- "x-ms-request-id": [
- "ae4950ee-b937-4de5-b43e-3d8d87b85a86"
- ],
- "x-ms-correlation-request-id": [
- "ae4950ee-b937-4de5-b43e-3d8d87b85a86"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223633Z:ae4950ee-b937-4de5-b43e-3d8d87b85a86"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:33 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ff653364-40c1-45bd-90a9-e5dc82f6fbdb"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11563"
- ],
- "x-ms-request-id": [
- "301d95da-5350-41bd-b1c7-392020d653bf"
- ],
- "x-ms-correlation-request-id": [
- "301d95da-5350-41bd-b1c7-392020d653bf"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223634Z:301d95da-5350-41bd-b1c7-392020d653bf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:34 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b425e407-70d6-4329-ab3b-6ea0d0866e57"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11561"
- ],
- "x-ms-request-id": [
- "77bb77c2-3d2d-42e2-8eb7-d0fe68950e1a"
- ],
- "x-ms-correlation-request-id": [
- "77bb77c2-3d2d-42e2-8eb7-d0fe68950e1a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223634Z:77bb77c2-3d2d-42e2-8eb7-d0fe68950e1a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:34 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fcb8e3a6-8076-4c0c-a8a0-1a372546643d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11559"
- ],
- "x-ms-request-id": [
- "22a3b688-5873-4c27-a82b-f0ad43c5e341"
- ],
- "x-ms-correlation-request-id": [
- "22a3b688-5873-4c27-a82b-f0ad43c5e341"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223635Z:22a3b688-5873-4c27-a82b-f0ad43c5e341"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:34 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "35732553-7e33-4e61-bf04-caa37b58c324"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11557"
- ],
- "x-ms-request-id": [
- "a6d53d14-e876-4da4-98d0-edb3be8061c8"
- ],
- "x-ms-correlation-request-id": [
- "a6d53d14-e876-4da4-98d0-edb3be8061c8"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223635Z:a6d53d14-e876-4da4-98d0-edb3be8061c8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:35 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "831"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9466303Z\",\r\n \"duration\": \"PT1M18.8185612S\",\r\n \"trackingId\": \"5eca3720-b851-44f9-ad11-dc0353342cd6\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/deployments/ps6657/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9kZXBsb3ltZW50cy9wczY2NTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f8a62388-ca20-4dd3-a802-509a6f2e9a11"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11555"
- ],
- "x-ms-request-id": [
- "045ae6b8-0ce3-4ebb-a790-a724c8596e7c"
- ],
- "x-ms-correlation-request-id": [
- "045ae6b8-0ce3-4ebb-a790-a724c8596e7c"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223636Z:045ae6b8-0ce3-4ebb-a790-a724c8596e7c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:36:35 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1286"
- ],
- "Retry-After": [
- "0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/F198D47DA545AEFA\",\r\n \"operationId\": \"F198D47DA545AEFA\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:36:35.7839422Z\",\r\n \"duration\": \"PT1M32.6558731S\",\r\n \"trackingId\": \"8a220912-23e1-45a1-b67d-c8319a0f70c4\",\r\n \"serviceRequestId\": \"091c51a6-ebaa-4647-8207-49bbc5dd0a7d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657/operations/08586121975844325188\",\r\n \"operationId\": \"08586121975844325188\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:36:35.9196332Z\",\r\n \"duration\": \"PT0.037498S\",\r\n \"trackingId\": \"504da978-a4af-4f59-aec8-64b981fd7905\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c46b593b-a79e-4fa8-9e63-f2777fef0fe1"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-request-id": [
- "2160d673-a30c-4c16-8a0b-4a678e9def93"
- ],
- "x-ms-correlation-request-id": [
- "2160d673-a30c-4c16-8a0b-4a678e9def93"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223502Z:2160d673-a30c-4c16-8a0b-4a678e9def93"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:02 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:35:01.7133084Z\",\r\n \"duration\": \"PT0.6681852S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bba05997-215e-44ec-bba1-6332301c846b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-request-id": [
- "91cb4299-62d5-404b-b535-9d834c415126"
- ],
- "x-ms-correlation-request-id": [
- "91cb4299-62d5-404b-b535-9d834c415126"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223502Z:91cb4299-62d5-404b-b535-9d834c415126"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:02 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:35:01.7133084Z\",\r\n \"duration\": \"PT0.6681852S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e8f26dcc-da5a-4a32-98a8-f4dd2a9e6802"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-request-id": [
- "442be00e-e400-4350-947e-714b7471ee19"
- ],
- "x-ms-correlation-request-id": [
- "442be00e-e400-4350-947e-714b7471ee19"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223503Z:442be00e-e400-4350-947e-714b7471ee19"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:03 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "88ce0380-2337-4433-8fde-ad201fa7f657"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-request-id": [
- "1f23b0dc-9e86-47cd-b63f-6cbe2ba0dbc9"
- ],
- "x-ms-correlation-request-id": [
- "1f23b0dc-9e86-47cd-b63f-6cbe2ba0dbc9"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223503Z:1f23b0dc-9e86-47cd-b63f-6cbe2ba0dbc9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:03 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "de137451-bb47-4637-90ab-26ceea29a1c4"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-request-id": [
- "cca0d735-6f02-4e5a-ba31-2555ab06e2c8"
- ],
- "x-ms-correlation-request-id": [
- "cca0d735-6f02-4e5a-ba31-2555ab06e2c8"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223504Z:cca0d735-6f02-4e5a-ba31-2555ab06e2c8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:04 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "28284874-7546-4cc3-9978-6bffc4674bbd"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
- ],
- "x-ms-request-id": [
- "20bd9b84-0495-4122-9f9d-857aee9f72da"
- ],
- "x-ms-correlation-request-id": [
- "20bd9b84-0495-4122-9f9d-857aee9f72da"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223504Z:20bd9b84-0495-4122-9f9d-857aee9f72da"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:04 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "50db9fcc-1169-4e59-a6c6-4cd7173db5bb"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-request-id": [
- "f47542de-61da-4d8e-ac3e-36ff9bff6b71"
- ],
- "x-ms-correlation-request-id": [
- "f47542de-61da-4d8e-ac3e-36ff9bff6b71"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223504Z:f47542de-61da-4d8e-ac3e-36ff9bff6b71"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:04 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "afec06fa-d7c8-46e2-8b41-8201a761ea4e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
- ],
- "x-ms-request-id": [
- "4e32f1e7-5322-40fc-9d8e-3145c6703455"
- ],
- "x-ms-correlation-request-id": [
- "4e32f1e7-5322-40fc-9d8e-3145c6703455"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223505Z:4e32f1e7-5322-40fc-9d8e-3145c6703455"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:05 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f967c3b8-53e1-47b5-afe9-9e0b70b862d8"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
- "x-ms-request-id": [
- "5038f27e-9f6e-4f2f-bcba-dea4018c3339"
- ],
- "x-ms-correlation-request-id": [
- "5038f27e-9f6e-4f2f-bcba-dea4018c3339"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223505Z:5038f27e-9f6e-4f2f-bcba-dea4018c3339"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:05 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "19b19ae0-9b39-475f-aa93-2e2cf596352b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
- ],
- "x-ms-request-id": [
- "7acd27e6-4a31-4e5a-a7fe-10dcc8edc1ac"
- ],
- "x-ms-correlation-request-id": [
- "7acd27e6-4a31-4e5a-a7fe-10dcc8edc1ac"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223506Z:7acd27e6-4a31-4e5a-a7fe-10dcc8edc1ac"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:05 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "04e24266-a62c-4189-a8f5-c67fdac7bc6e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-request-id": [
- "3e022e4b-3497-4db1-8a25-1167543f0340"
- ],
- "x-ms-correlation-request-id": [
- "3e022e4b-3497-4db1-8a25-1167543f0340"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223506Z:3e022e4b-3497-4db1-8a25-1167543f0340"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:06 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:03.0872104Z\",\r\n \"duration\": \"PT2.0420872S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7469cc23-748a-419e-b101-2aa027c92592"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
- "x-ms-request-id": [
- "fae5c496-63a3-49be-91bb-30c113e44db1"
- ],
- "x-ms-correlation-request-id": [
- "fae5c496-63a3-49be-91bb-30c113e44db1"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223506Z:fae5c496-63a3-49be-91bb-30c113e44db1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:06 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "878ab2cd-7f4e-4212-a6bc-36eb7650460a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-request-id": [
- "a391e345-82d2-478d-9027-3dda25e4ec03"
- ],
- "x-ms-correlation-request-id": [
- "a391e345-82d2-478d-9027-3dda25e4ec03"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223507Z:a391e345-82d2-478d-9027-3dda25e4ec03"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:07 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "464dd67e-3bb7-4d94-b9c9-0aaebdf7548e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
- ],
- "x-ms-request-id": [
- "d2c5ea6d-bdfa-4979-b862-e7375894d3f3"
- ],
- "x-ms-correlation-request-id": [
- "d2c5ea6d-bdfa-4979-b862-e7375894d3f3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223507Z:d2c5ea6d-bdfa-4979-b862-e7375894d3f3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:07 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7c79e419-8c1f-4d04-8751-0f4affff8746"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-request-id": [
- "839801a9-c2bf-4d28-bc62-edda83e3b1b2"
- ],
- "x-ms-correlation-request-id": [
- "839801a9-c2bf-4d28-bc62-edda83e3b1b2"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223508Z:839801a9-c2bf-4d28-bc62-edda83e3b1b2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:08 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ef904120-e75c-482a-9b9a-92de0e45ed66"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
- ],
- "x-ms-request-id": [
- "de650db3-af08-4d2b-8e75-5c499700798a"
- ],
- "x-ms-correlation-request-id": [
- "de650db3-af08-4d2b-8e75-5c499700798a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223508Z:de650db3-af08-4d2b-8e75-5c499700798a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:08 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3ac4a64f-b17f-49c1-8cb6-b59a81909f26"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
- "x-ms-request-id": [
- "d76ed07e-9bb4-4a77-897c-58575e7f70f3"
- ],
- "x-ms-correlation-request-id": [
- "d76ed07e-9bb4-4a77-897c-58575e7f70f3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223508Z:d76ed07e-9bb4-4a77-897c-58575e7f70f3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:08 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "892cff33-8d32-49bb-9f45-0279e500dc33"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-request-id": [
- "e516e7e6-b724-4b9b-9900-0c8393ca2fe3"
- ],
- "x-ms-correlation-request-id": [
- "e516e7e6-b724-4b9b-9900-0c8393ca2fe3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223509Z:e516e7e6-b724-4b9b-9900-0c8393ca2fe3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:09 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b530abb2-c085-4c1f-a6de-ecb62508980d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
- "x-ms-request-id": [
- "0b0bcfeb-324d-4b29-9796-1ddec0fb0c3a"
- ],
- "x-ms-correlation-request-id": [
- "0b0bcfeb-324d-4b29-9796-1ddec0fb0c3a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223509Z:0b0bcfeb-324d-4b29-9796-1ddec0fb0c3a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:09 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:06.5271229Z\",\r\n \"duration\": \"PT5.4819997S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "976a59f6-4441-4ae2-aeec-64fe8a92eaca"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
- ],
- "x-ms-request-id": [
- "62114e49-c4f6-4c01-a804-f3c319182169"
- ],
- "x-ms-correlation-request-id": [
- "62114e49-c4f6-4c01-a804-f3c319182169"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223510Z:62114e49-c4f6-4c01-a804-f3c319182169"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:10 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0bf38e4c-2285-4ca1-81c0-b2e3ec0a9643"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
- ],
- "x-ms-request-id": [
- "0aceda7e-b455-49a1-a2e7-16587072b816"
- ],
- "x-ms-correlation-request-id": [
- "0aceda7e-b455-49a1-a2e7-16587072b816"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223510Z:0aceda7e-b455-49a1-a2e7-16587072b816"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:10 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a157d2a6-247d-4894-ae72-4117056e792b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
- ],
- "x-ms-request-id": [
- "b6074e6c-d8c4-4d97-809f-5639aa2a95b3"
- ],
- "x-ms-correlation-request-id": [
- "b6074e6c-d8c4-4d97-809f-5639aa2a95b3"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223511Z:b6074e6c-d8c4-4d97-809f-5639aa2a95b3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:10 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "de0f6d85-eb77-4a86-bc2b-8b7164e93b71"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
- ],
- "x-ms-request-id": [
- "ecb9947b-3cf8-41fc-b89a-39e1288a76ad"
- ],
- "x-ms-correlation-request-id": [
- "ecb9947b-3cf8-41fc-b89a-39e1288a76ad"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223511Z:ecb9947b-3cf8-41fc-b89a-39e1288a76ad"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:11 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1303719a-c98e-413b-af6c-46c3bd9a103f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
- ],
- "x-ms-request-id": [
- "494e98b7-1382-4972-bdbc-985087d8d60e"
- ],
- "x-ms-correlation-request-id": [
- "494e98b7-1382-4972-bdbc-985087d8d60e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223511Z:494e98b7-1382-4972-bdbc-985087d8d60e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:11 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c61464b3-5faa-4c94-8efc-d9af2643e506"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
- ],
- "x-ms-request-id": [
- "7af3b785-3d05-4ee4-94e0-bde35d158b98"
- ],
- "x-ms-correlation-request-id": [
- "7af3b785-3d05-4ee4-94e0-bde35d158b98"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223512Z:7af3b785-3d05-4ee4-94e0-bde35d158b98"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:12 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9c914ebd-202f-4f0b-8d0a-0f1634cec198"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
- ],
- "x-ms-request-id": [
- "7f887ea6-05a8-4592-9c24-92e410a25510"
- ],
- "x-ms-correlation-request-id": [
- "7f887ea6-05a8-4592-9c24-92e410a25510"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223512Z:7f887ea6-05a8-4592-9c24-92e410a25510"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:12 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ea66dad5-472f-496e-9b2f-40e537a9ae64"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
- ],
- "x-ms-request-id": [
- "ca9aa726-45f6-4678-b0e4-edd39dabb621"
- ],
- "x-ms-correlation-request-id": [
- "ca9aa726-45f6-4678-b0e4-edd39dabb621"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223513Z:ca9aa726-45f6-4678-b0e4-edd39dabb621"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:13 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "21600ec7-c984-4862-a4d5-971d281481e4"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
- ],
- "x-ms-request-id": [
- "a526f7d2-423f-4897-b712-d0d015dbcac5"
- ],
- "x-ms-correlation-request-id": [
- "a526f7d2-423f-4897-b712-d0d015dbcac5"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223513Z:a526f7d2-423f-4897-b712-d0d015dbcac5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:13 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:09.7113279Z\",\r\n \"duration\": \"PT8.6662047S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0ebeb252-1fc5-4146-9a12-9b25e42951e8"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
- ],
- "x-ms-request-id": [
- "18f0aef5-7fea-4254-b802-cf5ec66862bf"
- ],
- "x-ms-correlation-request-id": [
- "18f0aef5-7fea-4254-b802-cf5ec66862bf"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223514Z:18f0aef5-7fea-4254-b802-cf5ec66862bf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:13 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2643ef58-7885-4978-956c-a9880d08a348"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
- ],
- "x-ms-request-id": [
- "d3da4a77-52f0-44e5-a868-798e2bd561b2"
- ],
- "x-ms-correlation-request-id": [
- "d3da4a77-52f0-44e5-a868-798e2bd561b2"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223514Z:d3da4a77-52f0-44e5-a868-798e2bd561b2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:14 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "04cce973-fe5d-49b4-a8dd-263532a0753f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11938"
- ],
- "x-ms-request-id": [
- "f129a1d9-05ae-4fb8-8940-75a37a6afa2e"
- ],
- "x-ms-correlation-request-id": [
- "f129a1d9-05ae-4fb8-8940-75a37a6afa2e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223514Z:f129a1d9-05ae-4fb8-8940-75a37a6afa2e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:14 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b9f33b4d-f2e4-4b4a-9568-9c2627698548"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
- ],
- "x-ms-request-id": [
- "227c4caf-7504-4f57-9ae2-7acef92db445"
- ],
- "x-ms-correlation-request-id": [
- "227c4caf-7504-4f57-9ae2-7acef92db445"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223515Z:227c4caf-7504-4f57-9ae2-7acef92db445"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:15 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9cebf28b-f531-448d-8e22-70030331ca35"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
- ],
- "x-ms-request-id": [
- "3059aecc-eb1f-4043-a2d1-e60c369da3e2"
- ],
- "x-ms-correlation-request-id": [
- "3059aecc-eb1f-4043-a2d1-e60c369da3e2"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223515Z:3059aecc-eb1f-4043-a2d1-e60c369da3e2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:15 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b5f080fd-f41e-43f2-9c74-1e137ab73e42"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
- ],
- "x-ms-request-id": [
- "91631294-26ef-4301-90cd-cf2cf1dda101"
- ],
- "x-ms-correlation-request-id": [
- "91631294-26ef-4301-90cd-cf2cf1dda101"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223516Z:91631294-26ef-4301-90cd-cf2cf1dda101"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:16 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ed4de6aa-c27a-48f5-a085-32603f9e1ed6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
- ],
- "x-ms-request-id": [
- "4cab1f2e-a5ae-47e6-bfcd-a8ecd44e6b3a"
- ],
- "x-ms-correlation-request-id": [
- "4cab1f2e-a5ae-47e6-bfcd-a8ecd44e6b3a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223516Z:4cab1f2e-a5ae-47e6-bfcd-a8ecd44e6b3a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:16 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2ff9676b-bad4-4ffe-bba3-0a8a2e3ac7e9"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
- ],
- "x-ms-request-id": [
- "d7a2067b-1d23-403c-b990-272f3596ac6d"
- ],
- "x-ms-correlation-request-id": [
- "d7a2067b-1d23-403c-b990-272f3596ac6d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223516Z:d7a2067b-1d23-403c-b990-272f3596ac6d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:16 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bdb2f8d3-2ce6-4e52-9f1d-b7deb8d1111d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11926"
- ],
- "x-ms-request-id": [
- "d7ab0b04-4e82-4ffe-9085-8c1b115ccf18"
- ],
- "x-ms-correlation-request-id": [
- "d7ab0b04-4e82-4ffe-9085-8c1b115ccf18"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223517Z:d7ab0b04-4e82-4ffe-9085-8c1b115ccf18"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:17 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "df3f3baf-4e82-4387-acdf-1d13be21c5ee"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11924"
- ],
- "x-ms-request-id": [
- "8ad3af63-c0c8-45fb-b64a-afe169b8a677"
- ],
- "x-ms-correlation-request-id": [
- "8ad3af63-c0c8-45fb-b64a-afe169b8a677"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223517Z:8ad3af63-c0c8-45fb-b64a-afe169b8a677"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:17 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7e8f3402-1a3a-4467-b289-84c4383f11e1"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11922"
- ],
- "x-ms-request-id": [
- "6e13dfe6-2241-4ed0-a274-6fc048fd56d4"
- ],
- "x-ms-correlation-request-id": [
- "6e13dfe6-2241-4ed0-a274-6fc048fd56d4"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223518Z:6e13dfe6-2241-4ed0-a274-6fc048fd56d4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:18 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "754a97c9-bbb4-45fe-bfe9-1072958c7adf"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11920"
- ],
- "x-ms-request-id": [
- "49ff3709-83ea-4e8e-8f15-82000d5ed77a"
- ],
- "x-ms-correlation-request-id": [
- "49ff3709-83ea-4e8e-8f15-82000d5ed77a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223518Z:49ff3709-83ea-4e8e-8f15-82000d5ed77a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:18 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:13.8455768Z\",\r\n \"duration\": \"PT12.8004536S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cadbe67c-617b-4649-8954-92859fdbbea3"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11918"
- ],
- "x-ms-request-id": [
- "8ee7eb61-60e5-42dc-98de-24e351f40b77"
- ],
- "x-ms-correlation-request-id": [
- "8ee7eb61-60e5-42dc-98de-24e351f40b77"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223519Z:8ee7eb61-60e5-42dc-98de-24e351f40b77"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:18 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fe87d437-d1ff-4ad5-9b1f-5159a1356a74"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11916"
- ],
- "x-ms-request-id": [
- "6942b6dc-8d65-45d1-beca-95d1ecb4675e"
- ],
- "x-ms-correlation-request-id": [
- "6942b6dc-8d65-45d1-beca-95d1ecb4675e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223519Z:6942b6dc-8d65-45d1-beca-95d1ecb4675e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:19 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8142ed26-c418-41bc-b309-d98e1441f7a2"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11914"
- ],
- "x-ms-request-id": [
- "e148dc06-cc76-4687-80e6-c5919fa1ce4b"
- ],
- "x-ms-correlation-request-id": [
- "e148dc06-cc76-4687-80e6-c5919fa1ce4b"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223519Z:e148dc06-cc76-4687-80e6-c5919fa1ce4b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:19 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9e702e6d-2263-42b0-b8c2-7c7b737d7b14"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11912"
- ],
- "x-ms-request-id": [
- "531948ab-e856-4eb1-a2b7-cac2e6673835"
- ],
- "x-ms-correlation-request-id": [
- "531948ab-e856-4eb1-a2b7-cac2e6673835"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223520Z:531948ab-e856-4eb1-a2b7-cac2e6673835"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:20 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "51ef22b9-d2a8-4887-b807-5f270f9d6e9d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11910"
- ],
- "x-ms-request-id": [
- "0265ca03-e16a-4852-bf69-df6357a28d68"
- ],
- "x-ms-correlation-request-id": [
- "0265ca03-e16a-4852-bf69-df6357a28d68"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223520Z:0265ca03-e16a-4852-bf69-df6357a28d68"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:20 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a182e2da-9475-4c35-8cce-5fbed76f65d0"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11908"
- ],
- "x-ms-request-id": [
- "197a06b1-1750-48dd-9728-6f9401747cab"
- ],
- "x-ms-correlation-request-id": [
- "197a06b1-1750-48dd-9728-6f9401747cab"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223521Z:197a06b1-1750-48dd-9728-6f9401747cab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:20 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7a7f64b2-29ad-4e83-8e5d-43c46f15ffb6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11906"
- ],
- "x-ms-request-id": [
- "6e0b0c80-996f-4328-a9fa-f9f776ef5074"
- ],
- "x-ms-correlation-request-id": [
- "6e0b0c80-996f-4328-a9fa-f9f776ef5074"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223521Z:6e0b0c80-996f-4328-a9fa-f9f776ef5074"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:21 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f62955f2-3c07-4339-a51b-ecdd216c7399"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11904"
- ],
- "x-ms-request-id": [
- "391af050-65a8-4ec8-b6c2-f0425835073a"
- ],
- "x-ms-correlation-request-id": [
- "391af050-65a8-4ec8-b6c2-f0425835073a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223522Z:391af050-65a8-4ec8-b6c2-f0425835073a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:21 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "be056193-b465-4de5-ad1e-47924053d3e7"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11902"
- ],
- "x-ms-request-id": [
- "25fd80a7-8d7f-46f6-a21e-519d6e7effb0"
- ],
- "x-ms-correlation-request-id": [
- "25fd80a7-8d7f-46f6-a21e-519d6e7effb0"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223522Z:25fd80a7-8d7f-46f6-a21e-519d6e7effb0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:22 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3f80063d-a109-4ad5-a819-764f89a7af15"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11900"
- ],
- "x-ms-request-id": [
- "ef03b9dd-2847-4406-9df0-fd7b8ec8c561"
- ],
- "x-ms-correlation-request-id": [
- "ef03b9dd-2847-4406-9df0-fd7b8ec8c561"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223522Z:ef03b9dd-2847-4406-9df0-fd7b8ec8c561"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:22 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4357e207-7f80-4d2e-b4e0-793ebbd8f4fb"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11898"
- ],
- "x-ms-request-id": [
- "a8551073-a890-4e2b-8af8-7dfdc1eedaaa"
- ],
- "x-ms-correlation-request-id": [
- "a8551073-a890-4e2b-8af8-7dfdc1eedaaa"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223523Z:a8551073-a890-4e2b-8af8-7dfdc1eedaaa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:22 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a55e6de8-eabc-4cdb-94ba-1626ccc004a3"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11896"
- ],
- "x-ms-request-id": [
- "247d28cc-6fdd-4b0b-b897-4f9cd0547402"
- ],
- "x-ms-correlation-request-id": [
- "247d28cc-6fdd-4b0b-b897-4f9cd0547402"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223523Z:247d28cc-6fdd-4b0b-b897-4f9cd0547402"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:23 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "0ec30ef2-3cd8-44e5-b682-2105c5bce29d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11894"
- ],
- "x-ms-request-id": [
- "8bcfa25e-2ad2-4e41-8ab7-a60fa9d1f60c"
- ],
- "x-ms-correlation-request-id": [
- "8bcfa25e-2ad2-4e41-8ab7-a60fa9d1f60c"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223524Z:8bcfa25e-2ad2-4e41-8ab7-a60fa9d1f60c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:23 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:18.8487554Z\",\r\n \"duration\": \"PT17.8036322S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "04aed572-9dc2-4d8e-81cf-73c0c7f211c7"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11892"
- ],
- "x-ms-request-id": [
- "957deeb3-db58-418f-8f5c-9a8c751dff84"
- ],
- "x-ms-correlation-request-id": [
- "957deeb3-db58-418f-8f5c-9a8c751dff84"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223524Z:957deeb3-db58-418f-8f5c-9a8c751dff84"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:24 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c6c1b1fd-7f13-4a23-ad22-29ccc6e667a8"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11890"
- ],
- "x-ms-request-id": [
- "98f39f05-2d85-414d-9dfd-b46c1d4fc7fc"
- ],
- "x-ms-correlation-request-id": [
- "98f39f05-2d85-414d-9dfd-b46c1d4fc7fc"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223524Z:98f39f05-2d85-414d-9dfd-b46c1d4fc7fc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:24 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4be83836-0447-46b3-9ab5-c76473b98f49"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11888"
- ],
- "x-ms-request-id": [
- "7e432c2b-bd92-4355-8de0-020593fc10ab"
- ],
- "x-ms-correlation-request-id": [
- "7e432c2b-bd92-4355-8de0-020593fc10ab"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223525Z:7e432c2b-bd92-4355-8de0-020593fc10ab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:25 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "85f25081-eeb2-4a42-83a6-b35fcab09830"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11886"
- ],
- "x-ms-request-id": [
- "903af7fb-3891-45a4-8bc8-6b199af57d34"
- ],
- "x-ms-correlation-request-id": [
- "903af7fb-3891-45a4-8bc8-6b199af57d34"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223525Z:903af7fb-3891-45a4-8bc8-6b199af57d34"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:25 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9097f1fb-6c14-4e37-9c70-926da75d99cb"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11884"
- ],
- "x-ms-request-id": [
- "d55ebed5-1323-4114-b06d-e4476876def8"
- ],
- "x-ms-correlation-request-id": [
- "d55ebed5-1323-4114-b06d-e4476876def8"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223526Z:d55ebed5-1323-4114-b06d-e4476876def8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:25 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8eba1ab1-866a-4994-b911-6e6e7efb4540"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11882"
- ],
- "x-ms-request-id": [
- "8c799fb6-deaf-486e-b4c8-fb300acf3621"
- ],
- "x-ms-correlation-request-id": [
- "8c799fb6-deaf-486e-b4c8-fb300acf3621"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223526Z:8c799fb6-deaf-486e-b4c8-fb300acf3621"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:26 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "89cd0b8b-6f2d-4e6a-9035-3dff4247e01d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11880"
- ],
- "x-ms-request-id": [
- "22601a7b-43ee-4c4a-b01a-3091a55ddfeb"
- ],
- "x-ms-correlation-request-id": [
- "22601a7b-43ee-4c4a-b01a-3091a55ddfeb"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223527Z:22601a7b-43ee-4c4a-b01a-3091a55ddfeb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:26 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6ca20c84-3279-486c-9eb4-66747adb488d"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11878"
- ],
- "x-ms-request-id": [
- "902011e5-a013-49de-9eb8-4db6135ab42b"
- ],
- "x-ms-correlation-request-id": [
- "902011e5-a013-49de-9eb8-4db6135ab42b"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223527Z:902011e5-a013-49de-9eb8-4db6135ab42b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:27 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2b5a8cc2-cf38-4454-bf17-29f85b5c6665"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11876"
- ],
- "x-ms-request-id": [
- "86aab294-8b65-49cb-9012-0e866f12a160"
- ],
- "x-ms-correlation-request-id": [
- "86aab294-8b65-49cb-9012-0e866f12a160"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223527Z:86aab294-8b65-49cb-9012-0e866f12a160"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:27 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "117da119-8223-45d4-9b85-9ec975ce1a1a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11874"
- ],
- "x-ms-request-id": [
- "19c7d453-4aaa-4cc2-915c-61c63d61a7ae"
- ],
- "x-ms-correlation-request-id": [
- "19c7d453-4aaa-4cc2-915c-61c63d61a7ae"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223528Z:19c7d453-4aaa-4cc2-915c-61c63d61a7ae"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:27 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "7cb61f53-d9ac-4549-9364-8cd6c7996c34"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11872"
- ],
- "x-ms-request-id": [
- "da658adf-498c-49cb-a169-9841d53f8dea"
- ],
- "x-ms-correlation-request-id": [
- "da658adf-498c-49cb-a169-9841d53f8dea"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223528Z:da658adf-498c-49cb-a169-9841d53f8dea"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:28 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "01621125-13e5-4544-ab50-d2afa66f162a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11870"
- ],
- "x-ms-request-id": [
- "a1c07d78-98f5-4cc8-a2a4-a5b38a9d2dbc"
- ],
- "x-ms-correlation-request-id": [
- "a1c07d78-98f5-4cc8-a2a4-a5b38a9d2dbc"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223529Z:a1c07d78-98f5-4cc8-a2a4-a5b38a9d2dbc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:28 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1ab24761-34af-457b-aace-50d98fd1d848"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11868"
- ],
- "x-ms-request-id": [
- "7d986ca1-e3f3-40c4-aee6-512ee8c648df"
- ],
- "x-ms-correlation-request-id": [
- "7d986ca1-e3f3-40c4-aee6-512ee8c648df"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223529Z:7d986ca1-e3f3-40c4-aee6-512ee8c648df"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:29 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bfc2d1e8-2083-4d2b-8049-c7d7fcc7f33e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11866"
- ],
- "x-ms-request-id": [
- "dc4ef65f-6c5a-46db-96b0-1b7b360f7a84"
- ],
- "x-ms-correlation-request-id": [
- "dc4ef65f-6c5a-46db-96b0-1b7b360f7a84"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223529Z:dc4ef65f-6c5a-46db-96b0-1b7b360f7a84"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:29 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e762f48b-9008-4018-9188-32aecf9f8a14"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11864"
- ],
- "x-ms-request-id": [
- "ec1b4d98-3236-4e18-bf0b-2bd5a9ccaee1"
- ],
- "x-ms-correlation-request-id": [
- "ec1b4d98-3236-4e18-bf0b-2bd5a9ccaee1"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223530Z:ec1b4d98-3236-4e18-bf0b-2bd5a9ccaee1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:30 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c58adb47-843e-4ce4-8a78-e84d32e59b65"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11862"
- ],
- "x-ms-request-id": [
- "ca5008bc-dc2a-443f-9bbc-6fb040fa4a9d"
- ],
- "x-ms-correlation-request-id": [
- "ca5008bc-dc2a-443f-9bbc-6fb040fa4a9d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223530Z:ca5008bc-dc2a-443f-9bbc-6fb040fa4a9d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:30 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1425"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:24.1981119Z\",\r\n \"duration\": \"PT23.1529887S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "36898fd1-3c08-45af-9b2e-9caa63095cd0"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11860"
- ],
- "x-ms-request-id": [
- "40b5204b-2732-40e2-983a-f5a339530e76"
- ],
- "x-ms-correlation-request-id": [
- "40b5204b-2732-40e2-983a-f5a339530e76"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223531Z:40b5204b-2732-40e2-983a-f5a339530e76"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:30 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bc79bbd3-b0a2-4b5e-8866-7e5135ca4234"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11858"
- ],
- "x-ms-request-id": [
- "a1529570-8bf7-431d-b891-22b4387c84a9"
- ],
- "x-ms-correlation-request-id": [
- "a1529570-8bf7-431d-b891-22b4387c84a9"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223531Z:a1529570-8bf7-431d-b891-22b4387c84a9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:31 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "299aa66a-f46f-4aa8-8854-ec1fa5cff22f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11856"
- ],
- "x-ms-request-id": [
- "874b5771-7a46-472f-99c6-44609c07ba46"
- ],
- "x-ms-correlation-request-id": [
- "874b5771-7a46-472f-99c6-44609c07ba46"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223532Z:874b5771-7a46-472f-99c6-44609c07ba46"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:31 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2f06551a-33b9-4f8d-81a5-2c28f352567b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11854"
- ],
- "x-ms-request-id": [
- "aa83dbf7-39ad-41bb-918b-58a32812d1e4"
- ],
- "x-ms-correlation-request-id": [
- "aa83dbf7-39ad-41bb-918b-58a32812d1e4"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223532Z:aa83dbf7-39ad-41bb-918b-58a32812d1e4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:32 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2da20f87-5d71-4eeb-87d2-fcc2eea834af"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11852"
- ],
- "x-ms-request-id": [
- "33770533-52ae-4f8a-9be2-9c1d3b5463a8"
- ],
- "x-ms-correlation-request-id": [
- "33770533-52ae-4f8a-9be2-9c1d3b5463a8"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223532Z:33770533-52ae-4f8a-9be2-9c1d3b5463a8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:32 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2bd094f8-9cbb-4530-85bd-b7670eb97696"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11850"
- ],
- "x-ms-request-id": [
- "1bfe7a8c-015b-4007-9c33-b351e4399383"
- ],
- "x-ms-correlation-request-id": [
- "1bfe7a8c-015b-4007-9c33-b351e4399383"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223533Z:1bfe7a8c-015b-4007-9c33-b351e4399383"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:33 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b1c8ddab-6771-44cf-ac2e-92dff1407bd9"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11848"
- ],
- "x-ms-request-id": [
- "cb3c6e0d-a731-4469-b47b-01f151e8def4"
- ],
- "x-ms-correlation-request-id": [
- "cb3c6e0d-a731-4469-b47b-01f151e8def4"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223533Z:cb3c6e0d-a731-4469-b47b-01f151e8def4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:33 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9d661262-93fe-4b47-b225-4047e0e2c16e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11846"
- ],
- "x-ms-request-id": [
- "85d95f50-87b1-433d-9ef4-8a3d2a74811e"
- ],
- "x-ms-correlation-request-id": [
- "85d95f50-87b1-433d-9ef4-8a3d2a74811e"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223534Z:85d95f50-87b1-433d-9ef4-8a3d2a74811e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:33 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "66ae7318-ea9a-43fa-a555-ba1ef245b26f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11844"
- ],
- "x-ms-request-id": [
- "61553a3f-ab9c-4a7e-9a0a-58df1be70984"
- ],
- "x-ms-correlation-request-id": [
- "61553a3f-ab9c-4a7e-9a0a-58df1be70984"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223534Z:61553a3f-ab9c-4a7e-9a0a-58df1be70984"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:34 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "5ee8b879-707d-4722-96a9-a14cec08fc0f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11842"
- ],
- "x-ms-request-id": [
- "fb269a25-a153-4393-b855-35f29c47b36c"
- ],
- "x-ms-correlation-request-id": [
- "fb269a25-a153-4393-b855-35f29c47b36c"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223535Z:fb269a25-a153-4393-b855-35f29c47b36c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:34 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "549330f4-ed13-4cde-8406-e828ec87e91c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11840"
- ],
- "x-ms-request-id": [
- "901e8e37-5be9-4e37-8b80-9b8d49c1c28b"
- ],
- "x-ms-correlation-request-id": [
- "901e8e37-5be9-4e37-8b80-9b8d49c1c28b"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223535Z:901e8e37-5be9-4e37-8b80-9b8d49c1c28b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:35 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a8d58420-c69f-43d1-b4b3-af5fed068920"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11838"
- ],
- "x-ms-request-id": [
- "c86a4794-1a12-40e3-b9be-97c96a098571"
- ],
- "x-ms-correlation-request-id": [
- "c86a4794-1a12-40e3-b9be-97c96a098571"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223535Z:c86a4794-1a12-40e3-b9be-97c96a098571"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:35 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b3f1cf9b-177d-43d6-b779-dcf465ad42fd"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11836"
- ],
- "x-ms-request-id": [
- "7191015f-a67e-4cfe-8aeb-6a3631fc35bc"
- ],
- "x-ms-correlation-request-id": [
- "7191015f-a67e-4cfe-8aeb-6a3631fc35bc"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223536Z:7191015f-a67e-4cfe-8aeb-6a3631fc35bc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:35 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "57aeeca9-89ac-48a9-bfcd-266e2a3ad79b"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11834"
- ],
- "x-ms-request-id": [
- "f6f710e0-ad4d-462c-9425-50c9f2ba5c11"
- ],
- "x-ms-correlation-request-id": [
- "f6f710e0-ad4d-462c-9425-50c9f2ba5c11"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223536Z:f6f710e0-ad4d-462c-9425-50c9f2ba5c11"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:36 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9a8e26e5-cfa0-4977-ba59-ef0faf289e10"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11832"
- ],
- "x-ms-request-id": [
- "0e6082af-2c36-4576-ac78-ad58e787357a"
- ],
- "x-ms-correlation-request-id": [
- "0e6082af-2c36-4576-ac78-ad58e787357a"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223537Z:0e6082af-2c36-4576-ac78-ad58e787357a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:35:36 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "1424"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b00ef03d-9c26-4fb5-95b9-40db49605b4a"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11830"
+ "11732"
],
"x-ms-request-id": [
- "007c610f-4c1e-47e6-9e21-912dc570091b"
+ "22247b43-c539-478d-ac05-a7c2f9977f98"
],
"x-ms-correlation-request-id": [
- "007c610f-4c1e-47e6-9e21-912dc570091b"
+ "22247b43-c539-478d-ac05-a7c2f9977f98"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223537Z:007c610f-4c1e-47e6-9e21-912dc570091b"
+ "NORTHCENTRALUS:20200514T212747Z:22247b43-c539-478d-ac05-a7c2f9977f98"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19725,7 +8760,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:37 GMT"
+ "Thu, 14 May 2020 21:27:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19734,20 +8769,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "826"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0340076Z\",\r\n \"duration\": \"PT46.67216S\",\r\n \"trackingId\": \"12471466-8548-44c4-ba9d-d4ebbb0a4e6b\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8b6f267-94e2-42d4-870b-84ebdf34b9bc"
+ "a0278c15-f52d-4e7e-bae3-473d08e4ec7c"
],
"Accept-Language": [
"en-US"
@@ -19766,20 +8804,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11828"
+ "11730"
],
"x-ms-request-id": [
- "82e4b55a-4a8d-4123-be1c-bfa4218f061c"
+ "01e049c7-0fb5-4add-b2f1-f9f496ea0504"
],
"x-ms-correlation-request-id": [
- "82e4b55a-4a8d-4123-be1c-bfa4218f061c"
+ "01e049c7-0fb5-4add-b2f1-f9f496ea0504"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223538Z:82e4b55a-4a8d-4123-be1c-bfa4218f061c"
+ "NORTHCENTRALUS:20200514T212747Z:01e049c7-0fb5-4add-b2f1-f9f496ea0504"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19788,7 +8823,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:37 GMT"
+ "Thu, 14 May 2020 21:27:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19797,20 +8832,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "825"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:27:47.3336289Z\",\r\n \"duration\": \"PT56.9717813S\",\r\n \"trackingId\": \"c8827244-764d-4418-ba50-585df7e1fa22\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/deployments/ps500/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9kZXBsb3ltZW50cy9wczUwMC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34c23575-b702-434a-bec3-4a17e930127b"
+ "295a391c-5fa4-49e7-a245-b15ed66ebe29"
],
"Accept-Language": [
"en-US"
@@ -19829,20 +8867,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11826"
+ "11728"
],
"x-ms-request-id": [
- "4566f415-b4b1-4562-a9c2-f3c147b7dfc1"
+ "941a235c-750a-4462-9b5d-e0ddeed3eb8a"
],
"x-ms-correlation-request-id": [
- "4566f415-b4b1-4562-a9c2-f3c147b7dfc1"
+ "941a235c-750a-4462-9b5d-e0ddeed3eb8a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223538Z:4566f415-b4b1-4562-a9c2-f3c147b7dfc1"
+ "NORTHCENTRALUS:20200514T212747Z:941a235c-750a-4462-9b5d-e0ddeed3eb8a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19851,7 +8886,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:37 GMT"
+ "Thu, 14 May 2020 21:27:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19860,20 +8895,23 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1283"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/6B3C805DA488DE25\",\r\n \"operationId\": \"6B3C805DA488DE25\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:27:47.3336289Z\",\r\n \"duration\": \"PT56.9717813S\",\r\n \"trackingId\": \"c8827244-764d-4418-ba50-585df7e1fa22\",\r\n \"serviceRequestId\": \"36e04e0e-6b1d-45a8-b435-678a01daeeb6\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500/operations/08586121152763615057\",\r\n \"operationId\": \"08586121152763615057\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:27:47.6716757Z\",\r\n \"duration\": \"PT0.1789285S\",\r\n \"trackingId\": \"1a5cb70b-6a05-44f7-8ba4-2b02f2e5b78a\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79e1f569-9053-4f66-95ef-14893bd0db4e"
+ "8b654b86-b232-4370-9dbc-16ca107e5995"
],
"Accept-Language": [
"en-US"
@@ -19896,16 +8934,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11824"
+ "11997"
],
"x-ms-request-id": [
- "d2fe4189-3d79-4360-acc0-a85677d603bc"
+ "d5a565fb-a298-4aec-93ac-1ae5e9cdbabd"
],
"x-ms-correlation-request-id": [
- "d2fe4189-3d79-4360-acc0-a85677d603bc"
+ "d5a565fb-a298-4aec-93ac-1ae5e9cdbabd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223538Z:d2fe4189-3d79-4360-acc0-a85677d603bc"
+ "NORTHCENTRALUS:20200514T212650Z:d5a565fb-a298-4aec-93ac-1ae5e9cdbabd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19914,7 +8952,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:38 GMT"
+ "Thu, 14 May 2020 21:26:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19923,20 +8961,20 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b38d13b4-a86d-490a-97c5-3617586b91b5"
+ "fdec0e5a-b317-4dbe-a071-5e508e9dda97"
],
"Accept-Language": [
"en-US"
@@ -19959,16 +8997,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11822"
+ "11995"
],
"x-ms-request-id": [
- "f5f93eb0-6327-43d3-b670-5188fe899c19"
+ "91eac418-d2ad-4e9f-b971-5f315b1e783f"
],
"x-ms-correlation-request-id": [
- "f5f93eb0-6327-43d3-b670-5188fe899c19"
+ "91eac418-d2ad-4e9f-b971-5f315b1e783f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223539Z:f5f93eb0-6327-43d3-b670-5188fe899c19"
+ "NORTHCENTRALUS:20200514T212651Z:91eac418-d2ad-4e9f-b971-5f315b1e783f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -19977,7 +9015,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:38 GMT"
+ "Thu, 14 May 2020 21:26:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -19986,20 +9024,20 @@
"-1"
],
"Content-Length": [
- "1424"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:31.0394722Z\",\r\n \"duration\": \"PT29.994349S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "099fe468-5d86-45ec-9a36-ab413e832cf6"
+ "bfa3dd40-058a-472e-b584-21dc590e7543"
],
"Accept-Language": [
"en-US"
@@ -20022,16 +9060,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11820"
+ "11993"
],
"x-ms-request-id": [
- "f439311c-d3e5-4845-a4fd-9e69b8ab1468"
+ "d97ed2a5-d4fe-480f-9cdb-322a85156ef0"
],
"x-ms-correlation-request-id": [
- "f439311c-d3e5-4845-a4fd-9e69b8ab1468"
+ "d97ed2a5-d4fe-480f-9cdb-322a85156ef0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223539Z:f439311c-d3e5-4845-a4fd-9e69b8ab1468"
+ "NORTHCENTRALUS:20200514T212651Z:d97ed2a5-d4fe-480f-9cdb-322a85156ef0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20040,7 +9078,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:39 GMT"
+ "Thu, 14 May 2020 21:26:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20049,20 +9087,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69658395-85cf-4f05-b348-c5f2c405b8ae"
+ "eddb3ce1-b1ec-458e-af66-e0fb2fc46c69"
],
"Accept-Language": [
"en-US"
@@ -20085,16 +9123,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11818"
+ "11991"
],
"x-ms-request-id": [
- "a6470e58-b571-49b3-ba1e-fbb105342a9a"
+ "d9dacf33-1358-44a8-97a1-c14a8bfe3b5c"
],
"x-ms-correlation-request-id": [
- "a6470e58-b571-49b3-ba1e-fbb105342a9a"
+ "d9dacf33-1358-44a8-97a1-c14a8bfe3b5c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223540Z:a6470e58-b571-49b3-ba1e-fbb105342a9a"
+ "NORTHCENTRALUS:20200514T212651Z:d9dacf33-1358-44a8-97a1-c14a8bfe3b5c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20103,7 +9141,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:39 GMT"
+ "Thu, 14 May 2020 21:26:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20112,20 +9150,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ed3b9e2-9d9e-4e6c-9cbe-f1ad0906fe68"
+ "df206caa-967c-4c3c-a850-e8fbe2e990f8"
],
"Accept-Language": [
"en-US"
@@ -20148,16 +9186,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11816"
+ "11989"
],
"x-ms-request-id": [
- "8ef79d7b-6526-4744-ac89-f3208dd39d3a"
+ "ef7000d3-b4ec-4ffa-a391-fbabe3cf205a"
],
"x-ms-correlation-request-id": [
- "8ef79d7b-6526-4744-ac89-f3208dd39d3a"
+ "ef7000d3-b4ec-4ffa-a391-fbabe3cf205a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223540Z:8ef79d7b-6526-4744-ac89-f3208dd39d3a"
+ "NORTHCENTRALUS:20200514T212652Z:ef7000d3-b4ec-4ffa-a391-fbabe3cf205a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20166,7 +9204,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:39 GMT"
+ "Thu, 14 May 2020 21:26:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20175,20 +9213,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d61119da-0128-4fa1-bd07-707505c4a2a8"
+ "7e33ea7d-5489-4030-96b6-eb202dd8b0c7"
],
"Accept-Language": [
"en-US"
@@ -20211,16 +9249,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11814"
+ "11987"
],
"x-ms-request-id": [
- "d0f8b678-537a-4f97-9128-997843d99c2e"
+ "e7eb2f9a-83e6-49f5-a8c1-0a1d681265ed"
],
"x-ms-correlation-request-id": [
- "d0f8b678-537a-4f97-9128-997843d99c2e"
+ "e7eb2f9a-83e6-49f5-a8c1-0a1d681265ed"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223540Z:d0f8b678-537a-4f97-9128-997843d99c2e"
+ "NORTHCENTRALUS:20200514T212652Z:e7eb2f9a-83e6-49f5-a8c1-0a1d681265ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20229,7 +9267,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:40 GMT"
+ "Thu, 14 May 2020 21:26:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20238,20 +9276,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7226aded-e405-4c2a-b50a-08002ff10375"
+ "52be8a41-5922-4e45-ae47-93ffb80a84f2"
],
"Accept-Language": [
"en-US"
@@ -20274,16 +9312,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11812"
+ "11985"
],
"x-ms-request-id": [
- "9d875502-603f-40fa-b4e9-27b71ad1431a"
+ "2e0144ae-d1e2-425c-8f85-8129dce62035"
],
"x-ms-correlation-request-id": [
- "9d875502-603f-40fa-b4e9-27b71ad1431a"
+ "2e0144ae-d1e2-425c-8f85-8129dce62035"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223541Z:9d875502-603f-40fa-b4e9-27b71ad1431a"
+ "NORTHCENTRALUS:20200514T212653Z:2e0144ae-d1e2-425c-8f85-8129dce62035"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20292,7 +9330,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:40 GMT"
+ "Thu, 14 May 2020 21:26:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20301,20 +9339,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf7cd3e7-ad5e-4110-96fb-4c9ae9ad6882"
+ "f137b78a-056d-4262-97ef-3e6d5b831ae9"
],
"Accept-Language": [
"en-US"
@@ -20337,16 +9375,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11810"
+ "11983"
],
"x-ms-request-id": [
- "1daf05ca-c5aa-42a6-882f-0d2fbd1d4f76"
+ "8326b408-b6e9-4a5b-b032-44858c67d86f"
],
"x-ms-correlation-request-id": [
- "1daf05ca-c5aa-42a6-882f-0d2fbd1d4f76"
+ "8326b408-b6e9-4a5b-b032-44858c67d86f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223541Z:1daf05ca-c5aa-42a6-882f-0d2fbd1d4f76"
+ "NORTHCENTRALUS:20200514T212653Z:8326b408-b6e9-4a5b-b032-44858c67d86f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20355,7 +9393,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:41 GMT"
+ "Thu, 14 May 2020 21:26:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20364,20 +9402,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7bda9e01-0e85-4afd-a393-a86fa19dce29"
+ "b6a3a84c-79a7-418b-82ef-17c670084936"
],
"Accept-Language": [
"en-US"
@@ -20400,16 +9438,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11808"
+ "11981"
],
"x-ms-request-id": [
- "4ccf8f32-c6f9-4501-9ddf-e2305437fd64"
+ "6f017056-a9b1-423e-a04a-74403109a32b"
],
"x-ms-correlation-request-id": [
- "4ccf8f32-c6f9-4501-9ddf-e2305437fd64"
+ "6f017056-a9b1-423e-a04a-74403109a32b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223542Z:4ccf8f32-c6f9-4501-9ddf-e2305437fd64"
+ "NORTHCENTRALUS:20200514T212653Z:6f017056-a9b1-423e-a04a-74403109a32b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20418,7 +9456,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:41 GMT"
+ "Thu, 14 May 2020 21:26:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20427,20 +9465,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:50.3220962Z\",\r\n \"duration\": \"PT1.2059771S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ebb8036-de90-4677-8239-813543d00509"
+ "e1e912da-01cf-4df3-bf45-af0004359309"
],
"Accept-Language": [
"en-US"
@@ -20463,16 +9501,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11806"
+ "11979"
],
"x-ms-request-id": [
- "2f10f27d-c87d-4d12-b58b-0e7523eec1eb"
+ "20caa8dc-a53b-4eae-a479-1f5632c63c12"
],
"x-ms-correlation-request-id": [
- "2f10f27d-c87d-4d12-b58b-0e7523eec1eb"
+ "20caa8dc-a53b-4eae-a479-1f5632c63c12"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223542Z:2f10f27d-c87d-4d12-b58b-0e7523eec1eb"
+ "NORTHCENTRALUS:20200514T212654Z:20caa8dc-a53b-4eae-a479-1f5632c63c12"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20481,7 +9519,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:42 GMT"
+ "Thu, 14 May 2020 21:26:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20490,20 +9528,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.1309276Z\",\r\n \"duration\": \"PT5.0148085S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6bd27384-8468-4142-82aa-e6e609c5c098"
+ "6384dd27-03f4-4458-93d3-9eb3425ba663"
],
"Accept-Language": [
"en-US"
@@ -20526,16 +9564,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11804"
+ "11977"
],
"x-ms-request-id": [
- "29ed9b12-7678-4b1b-a9b3-80438f482c21"
+ "043dcdf5-4a8d-4d73-a2ad-f3dcb5fa5426"
],
"x-ms-correlation-request-id": [
- "29ed9b12-7678-4b1b-a9b3-80438f482c21"
+ "043dcdf5-4a8d-4d73-a2ad-f3dcb5fa5426"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223543Z:29ed9b12-7678-4b1b-a9b3-80438f482c21"
+ "NORTHCENTRALUS:20200514T212654Z:043dcdf5-4a8d-4d73-a2ad-f3dcb5fa5426"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20544,7 +9582,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:42 GMT"
+ "Thu, 14 May 2020 21:26:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20553,20 +9591,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.2113954Z\",\r\n \"duration\": \"PT5.0952763S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad1e38d2-8c52-432a-98ec-bebac096bc82"
+ "17e2ee3a-0d4f-4419-8a80-7a2bd276caaf"
],
"Accept-Language": [
"en-US"
@@ -20589,16 +9627,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11802"
+ "11975"
],
"x-ms-request-id": [
- "1cf0ec55-1c37-44f0-83fd-211a47259de4"
+ "acf04e87-b346-4c13-b771-888899ccae86"
],
"x-ms-correlation-request-id": [
- "1cf0ec55-1c37-44f0-83fd-211a47259de4"
+ "acf04e87-b346-4c13-b771-888899ccae86"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223543Z:1cf0ec55-1c37-44f0-83fd-211a47259de4"
+ "NORTHCENTRALUS:20200514T212655Z:acf04e87-b346-4c13-b771-888899ccae86"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20607,7 +9645,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:42 GMT"
+ "Thu, 14 May 2020 21:26:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20616,20 +9654,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.2113954Z\",\r\n \"duration\": \"PT5.0952763S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbfcf667-9048-418e-a404-fb9cb6b9eb20"
+ "5e0bbaef-cd13-447b-a988-320078d123ef"
],
"Accept-Language": [
"en-US"
@@ -20652,16 +9690,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11800"
+ "11973"
],
"x-ms-request-id": [
- "6ad8702f-2cf0-4b38-978b-65258e19e132"
+ "89e26b4a-1695-463a-8a9b-cc08716bbe8e"
],
"x-ms-correlation-request-id": [
- "6ad8702f-2cf0-4b38-978b-65258e19e132"
+ "89e26b4a-1695-463a-8a9b-cc08716bbe8e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223543Z:6ad8702f-2cf0-4b38-978b-65258e19e132"
+ "NORTHCENTRALUS:20200514T212655Z:89e26b4a-1695-463a-8a9b-cc08716bbe8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20670,7 +9708,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:43 GMT"
+ "Thu, 14 May 2020 21:26:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20679,20 +9717,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.2113954Z\",\r\n \"duration\": \"PT5.0952763S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72f60fb8-35aa-4e97-a1a0-010d85e1c6dc"
+ "64d85ac3-a0db-4382-b6cf-3392461d6526"
],
"Accept-Language": [
"en-US"
@@ -20715,16 +9753,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11798"
+ "11971"
],
"x-ms-request-id": [
- "c7dc0f86-ad9b-4b27-828e-527431e4160f"
+ "2089a1d6-2f71-4f05-af4a-7f3a3604d6c9"
],
"x-ms-correlation-request-id": [
- "c7dc0f86-ad9b-4b27-828e-527431e4160f"
+ "2089a1d6-2f71-4f05-af4a-7f3a3604d6c9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223544Z:c7dc0f86-ad9b-4b27-828e-527431e4160f"
+ "NORTHCENTRALUS:20200514T212655Z:2089a1d6-2f71-4f05-af4a-7f3a3604d6c9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20733,7 +9771,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:43 GMT"
+ "Thu, 14 May 2020 21:26:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20742,20 +9780,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.2113954Z\",\r\n \"duration\": \"PT5.0952763S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad57763e-1bd8-494f-9afc-ee9729b10c17"
+ "746c21fe-c5c8-4a7c-9473-4a9f55e19c35"
],
"Accept-Language": [
"en-US"
@@ -20778,16 +9816,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11796"
+ "11969"
],
"x-ms-request-id": [
- "1e3744dd-174e-478e-b38b-465ff7cfb6a9"
+ "4548b901-09f4-4169-a1ad-561564ce4be0"
],
"x-ms-correlation-request-id": [
- "1e3744dd-174e-478e-b38b-465ff7cfb6a9"
+ "4548b901-09f4-4169-a1ad-561564ce4be0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223544Z:1e3744dd-174e-478e-b38b-465ff7cfb6a9"
+ "NORTHCENTRALUS:20200514T212656Z:4548b901-09f4-4169-a1ad-561564ce4be0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20796,7 +9834,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:44 GMT"
+ "Thu, 14 May 2020 21:26:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20805,20 +9843,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.2113954Z\",\r\n \"duration\": \"PT5.0952763S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f5aa936-6563-43ea-9d17-7ae6ef5dff87"
+ "5c0460b1-9e68-4e30-842d-0859e9322871"
],
"Accept-Language": [
"en-US"
@@ -20841,16 +9879,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11794"
+ "11967"
],
"x-ms-request-id": [
- "7319f63e-9c70-4ca3-8ba0-3aa6395e3f17"
+ "133223dc-264c-4920-8113-07cf08ea0aaa"
],
"x-ms-correlation-request-id": [
- "7319f63e-9c70-4ca3-8ba0-3aa6395e3f17"
+ "133223dc-264c-4920-8113-07cf08ea0aaa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223545Z:7319f63e-9c70-4ca3-8ba0-3aa6395e3f17"
+ "NORTHCENTRALUS:20200514T212656Z:133223dc-264c-4920-8113-07cf08ea0aaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20859,7 +9897,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:44 GMT"
+ "Thu, 14 May 2020 21:26:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20868,20 +9906,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.2113954Z\",\r\n \"duration\": \"PT5.0952763S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52e4854d-34f2-4e04-ab22-4cb16eb6e819"
+ "647e0f0e-cbdf-4be9-a232-8602e7bc1d88"
],
"Accept-Language": [
"en-US"
@@ -20904,16 +9942,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11792"
+ "11965"
],
"x-ms-request-id": [
- "5b2fac22-0a3f-405a-a4ec-45b729cab6da"
+ "d678f4ff-49ec-4ea3-bd93-fab6e6659d9a"
],
"x-ms-correlation-request-id": [
- "5b2fac22-0a3f-405a-a4ec-45b729cab6da"
+ "d678f4ff-49ec-4ea3-bd93-fab6e6659d9a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223545Z:5b2fac22-0a3f-405a-a4ec-45b729cab6da"
+ "NORTHCENTRALUS:20200514T212656Z:d678f4ff-49ec-4ea3-bd93-fab6e6659d9a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20922,7 +9960,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:44 GMT"
+ "Thu, 14 May 2020 21:26:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20931,20 +9969,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:54.2113954Z\",\r\n \"duration\": \"PT5.0952763S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41aec068-14f2-4ccc-bcad-f2944ee8328e"
+ "f8af8870-4436-485e-875a-3b9e69859b83"
],
"Accept-Language": [
"en-US"
@@ -20967,16 +10005,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11790"
+ "11963"
],
"x-ms-request-id": [
- "607c3cbd-444b-4585-92f0-d8fd262a7b33"
+ "85ed52bb-c08d-47a3-a844-69b3cc72aaef"
],
"x-ms-correlation-request-id": [
- "607c3cbd-444b-4585-92f0-d8fd262a7b33"
+ "85ed52bb-c08d-47a3-a844-69b3cc72aaef"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223545Z:607c3cbd-444b-4585-92f0-d8fd262a7b33"
+ "NORTHCENTRALUS:20200514T212657Z:85ed52bb-c08d-47a3-a844-69b3cc72aaef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -20985,7 +10023,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:45 GMT"
+ "Thu, 14 May 2020 21:26:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -20994,20 +10032,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca6b5c9-81eb-4aa1-86d0-5677c821b842"
+ "2c57f15b-0471-4bf5-8170-c559c4859d90"
],
"Accept-Language": [
"en-US"
@@ -21030,16 +10068,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11788"
+ "11961"
],
"x-ms-request-id": [
- "94da6d94-1f6b-4201-914d-e1579a25eefb"
+ "1a21fee2-5037-4cde-bca3-8defb6b7bbdb"
],
"x-ms-correlation-request-id": [
- "94da6d94-1f6b-4201-914d-e1579a25eefb"
+ "1a21fee2-5037-4cde-bca3-8defb6b7bbdb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223546Z:94da6d94-1f6b-4201-914d-e1579a25eefb"
+ "NORTHCENTRALUS:20200514T212657Z:1a21fee2-5037-4cde-bca3-8defb6b7bbdb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21048,7 +10086,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:45 GMT"
+ "Thu, 14 May 2020 21:26:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21057,20 +10095,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8821cb88-d737-4134-91c3-d1fbbbc52821"
+ "d92edaec-18e6-415d-8cb0-9d54154fd4b8"
],
"Accept-Language": [
"en-US"
@@ -21093,16 +10131,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11786"
+ "11959"
],
"x-ms-request-id": [
- "b1e57f4a-0c0a-4748-9946-ec7b6b87936a"
+ "6ec625b1-b1d0-44d9-a369-385e9b5402b4"
],
"x-ms-correlation-request-id": [
- "b1e57f4a-0c0a-4748-9946-ec7b6b87936a"
+ "6ec625b1-b1d0-44d9-a369-385e9b5402b4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223546Z:b1e57f4a-0c0a-4748-9946-ec7b6b87936a"
+ "NORTHCENTRALUS:20200514T212658Z:6ec625b1-b1d0-44d9-a369-385e9b5402b4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21111,7 +10149,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:46 GMT"
+ "Thu, 14 May 2020 21:26:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21120,20 +10158,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35614717-4b97-4b98-bb56-1f2ddd18b5cb"
+ "31851d57-86ba-4197-8785-5b27a3047165"
],
"Accept-Language": [
"en-US"
@@ -21156,16 +10194,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11784"
+ "11957"
],
"x-ms-request-id": [
- "6d2d88fd-f5f4-4935-8630-d635d288f34a"
+ "34a17ffb-18b4-40be-b6fa-259c4ceecf02"
],
"x-ms-correlation-request-id": [
- "6d2d88fd-f5f4-4935-8630-d635d288f34a"
+ "34a17ffb-18b4-40be-b6fa-259c4ceecf02"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223547Z:6d2d88fd-f5f4-4935-8630-d635d288f34a"
+ "NORTHCENTRALUS:20200514T212658Z:34a17ffb-18b4-40be-b6fa-259c4ceecf02"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21174,7 +10212,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:46 GMT"
+ "Thu, 14 May 2020 21:26:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21183,20 +10221,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "107e63b3-c79c-4171-8a06-79f38ae6f050"
+ "a5b0431d-4d4f-443f-89dc-f4068374a9b4"
],
"Accept-Language": [
"en-US"
@@ -21219,16 +10257,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11782"
+ "11955"
],
"x-ms-request-id": [
- "b687d01a-abaa-4b36-9023-1df9db7a1e36"
+ "67683ac4-63fa-48a3-b0c9-131572301b46"
],
"x-ms-correlation-request-id": [
- "b687d01a-abaa-4b36-9023-1df9db7a1e36"
+ "67683ac4-63fa-48a3-b0c9-131572301b46"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223547Z:b687d01a-abaa-4b36-9023-1df9db7a1e36"
+ "NORTHCENTRALUS:20200514T212659Z:67683ac4-63fa-48a3-b0c9-131572301b46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21237,7 +10275,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:46 GMT"
+ "Thu, 14 May 2020 21:26:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21246,20 +10284,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f8b0d09b-9b35-47c2-aa5c-6bea3d28150f"
+ "58a47f71-be72-4d8f-8904-b09619935444"
],
"Accept-Language": [
"en-US"
@@ -21282,16 +10320,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11780"
+ "11953"
],
"x-ms-request-id": [
- "ccafc835-9cf2-4f03-a00b-b000b1de83e6"
+ "6404e9cf-d95d-42cc-bac5-97634d4f12c6"
],
"x-ms-correlation-request-id": [
- "ccafc835-9cf2-4f03-a00b-b000b1de83e6"
+ "6404e9cf-d95d-42cc-bac5-97634d4f12c6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223548Z:ccafc835-9cf2-4f03-a00b-b000b1de83e6"
+ "NORTHCENTRALUS:20200514T212659Z:6404e9cf-d95d-42cc-bac5-97634d4f12c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21300,7 +10338,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:47 GMT"
+ "Thu, 14 May 2020 21:26:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21309,20 +10347,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:39.2707605Z\",\r\n \"duration\": \"PT38.2256373S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d39c1fb8-c15b-4d8f-aa2e-a8275e05b275"
+ "6a4bfe4b-d1f4-4360-b164-c31833ff2ffa"
],
"Accept-Language": [
"en-US"
@@ -21345,16 +10383,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11778"
+ "11951"
],
"x-ms-request-id": [
- "7cc9a4b8-98df-4c8d-a7d5-20e774634f99"
+ "a57f6df9-9d69-4e05-93ee-7daf8e59a469"
],
"x-ms-correlation-request-id": [
- "7cc9a4b8-98df-4c8d-a7d5-20e774634f99"
+ "a57f6df9-9d69-4e05-93ee-7daf8e59a469"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223548Z:7cc9a4b8-98df-4c8d-a7d5-20e774634f99"
+ "NORTHCENTRALUS:20200514T212659Z:a57f6df9-9d69-4e05-93ee-7daf8e59a469"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21363,7 +10401,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:47 GMT"
+ "Thu, 14 May 2020 21:26:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21372,20 +10410,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b80e39fb-553a-456a-8f5b-174fdd9daede"
+ "1db93e09-dee0-4347-9b94-a1d11e82e34c"
],
"Accept-Language": [
"en-US"
@@ -21408,16 +10446,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11776"
+ "11949"
],
"x-ms-request-id": [
- "4e72b2c2-f90b-48cb-9830-65fd3b5c4aa8"
+ "47176a53-afdc-47f0-94bc-58c92ece9238"
],
"x-ms-correlation-request-id": [
- "4e72b2c2-f90b-48cb-9830-65fd3b5c4aa8"
+ "47176a53-afdc-47f0-94bc-58c92ece9238"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223548Z:4e72b2c2-f90b-48cb-9830-65fd3b5c4aa8"
+ "NORTHCENTRALUS:20200514T212700Z:47176a53-afdc-47f0-94bc-58c92ece9238"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21426,7 +10464,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:48 GMT"
+ "Thu, 14 May 2020 21:26:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21435,20 +10473,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:26:57.1926252Z\",\r\n \"duration\": \"PT8.0765061S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01fdd3ff-59b9-4cc9-9a0e-44f7139f8585"
+ "12f8431b-13b5-4710-930a-2e95e1bc44f6"
],
"Accept-Language": [
"en-US"
@@ -21471,16 +10509,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11774"
+ "11947"
],
"x-ms-request-id": [
- "400cd533-6aed-4f00-9e89-d364d4fd1ea2"
+ "9885c8c4-cdc3-4210-855d-ef859477c456"
],
"x-ms-correlation-request-id": [
- "400cd533-6aed-4f00-9e89-d364d4fd1ea2"
+ "9885c8c4-cdc3-4210-855d-ef859477c456"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223549Z:400cd533-6aed-4f00-9e89-d364d4fd1ea2"
+ "NORTHCENTRALUS:20200514T212700Z:9885c8c4-cdc3-4210-855d-ef859477c456"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21489,7 +10527,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:48 GMT"
+ "Thu, 14 May 2020 21:27:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21498,20 +10536,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc1957ff-9bd9-4705-80e9-993f94199641"
+ "46164c37-d633-433e-823d-fd43e5cb19ea"
],
"Accept-Language": [
"en-US"
@@ -21534,16 +10572,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11772"
+ "11945"
],
"x-ms-request-id": [
- "d9647aff-37de-4afd-aa5b-8e9fd37c61e7"
+ "6af126b9-625d-43e6-b332-c9b4c597118e"
],
"x-ms-correlation-request-id": [
- "d9647aff-37de-4afd-aa5b-8e9fd37c61e7"
+ "6af126b9-625d-43e6-b332-c9b4c597118e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223549Z:d9647aff-37de-4afd-aa5b-8e9fd37c61e7"
+ "NORTHCENTRALUS:20200514T212701Z:6af126b9-625d-43e6-b332-c9b4c597118e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21552,7 +10590,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:49 GMT"
+ "Thu, 14 May 2020 21:27:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21561,20 +10599,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7effa067-fcc8-417e-b795-81a0c452f3d9"
+ "87e6c9bc-18ce-48f1-8805-6754d7b4ee91"
],
"Accept-Language": [
"en-US"
@@ -21597,16 +10635,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11770"
+ "11943"
],
"x-ms-request-id": [
- "cff16883-07a1-4125-87a9-746bb3f4a9b3"
+ "9ec14ab6-d10a-4d08-81f6-3495fcd0c0b0"
],
"x-ms-correlation-request-id": [
- "cff16883-07a1-4125-87a9-746bb3f4a9b3"
+ "9ec14ab6-d10a-4d08-81f6-3495fcd0c0b0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223550Z:cff16883-07a1-4125-87a9-746bb3f4a9b3"
+ "NORTHCENTRALUS:20200514T212701Z:9ec14ab6-d10a-4d08-81f6-3495fcd0c0b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21615,7 +10653,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:49 GMT"
+ "Thu, 14 May 2020 21:27:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21624,20 +10662,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92c9390f-4c30-49bd-9c08-ee517c71774d"
+ "667c1be9-583d-4c7e-8892-80f3a25a3e13"
],
"Accept-Language": [
"en-US"
@@ -21660,16 +10698,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11768"
+ "11941"
],
"x-ms-request-id": [
- "d81fbb62-8c96-46a9-989f-84abd93b02b0"
+ "a429abec-dea4-49d6-a107-79c2683b9107"
],
"x-ms-correlation-request-id": [
- "d81fbb62-8c96-46a9-989f-84abd93b02b0"
+ "a429abec-dea4-49d6-a107-79c2683b9107"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223550Z:d81fbb62-8c96-46a9-989f-84abd93b02b0"
+ "NORTHCENTRALUS:20200514T212701Z:a429abec-dea4-49d6-a107-79c2683b9107"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21678,7 +10716,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:49 GMT"
+ "Thu, 14 May 2020 21:27:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21687,20 +10725,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a45b5a5-a976-429c-a461-34fb32da15e8"
+ "e76114c8-62c4-4780-9aff-3c58d4dce746"
],
"Accept-Language": [
"en-US"
@@ -21723,16 +10761,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11766"
+ "11939"
],
"x-ms-request-id": [
- "2052336e-9243-42d5-bddc-12bd54fb8912"
+ "6526ebcf-383f-4a0e-a20c-c9a2edd5f0b2"
],
"x-ms-correlation-request-id": [
- "2052336e-9243-42d5-bddc-12bd54fb8912"
+ "6526ebcf-383f-4a0e-a20c-c9a2edd5f0b2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223551Z:2052336e-9243-42d5-bddc-12bd54fb8912"
+ "NORTHCENTRALUS:20200514T212702Z:6526ebcf-383f-4a0e-a20c-c9a2edd5f0b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21741,7 +10779,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:50 GMT"
+ "Thu, 14 May 2020 21:27:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21750,20 +10788,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a7690b81-f5ae-456f-ac04-039678f27b3e"
+ "1d8fbf13-ccab-4b2c-83db-b873413c151b"
],
"Accept-Language": [
"en-US"
@@ -21786,16 +10824,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11764"
+ "11937"
],
"x-ms-request-id": [
- "de7bcda1-fa3d-4367-b42b-75297ba2727a"
+ "96be8859-96a1-4846-974b-2c525a5db3f9"
],
"x-ms-correlation-request-id": [
- "de7bcda1-fa3d-4367-b42b-75297ba2727a"
+ "96be8859-96a1-4846-974b-2c525a5db3f9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223551Z:de7bcda1-fa3d-4367-b42b-75297ba2727a"
+ "NORTHCENTRALUS:20200514T212702Z:96be8859-96a1-4846-974b-2c525a5db3f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21804,7 +10842,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:50 GMT"
+ "Thu, 14 May 2020 21:27:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21813,20 +10851,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce948560-4746-4e09-b9fa-09f8fb4ff193"
+ "2916c365-64bc-420c-b6b7-a5d538066bab"
],
"Accept-Language": [
"en-US"
@@ -21849,16 +10887,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11762"
+ "11935"
],
"x-ms-request-id": [
- "5d76c01b-d9cc-4a25-b61d-c1c4999f898e"
+ "e2d82236-27c8-40df-88df-5092049d9436"
],
"x-ms-correlation-request-id": [
- "5d76c01b-d9cc-4a25-b61d-c1c4999f898e"
+ "e2d82236-27c8-40df-88df-5092049d9436"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223551Z:5d76c01b-d9cc-4a25-b61d-c1c4999f898e"
+ "NORTHCENTRALUS:20200514T212703Z:e2d82236-27c8-40df-88df-5092049d9436"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21867,7 +10905,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:51 GMT"
+ "Thu, 14 May 2020 21:27:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21876,20 +10914,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c004312-d53b-477f-b3df-da451cae8432"
+ "782091e5-739e-4ed9-ac54-aa43a2f5419e"
],
"Accept-Language": [
"en-US"
@@ -21912,16 +10950,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11760"
+ "11933"
],
"x-ms-request-id": [
- "7315d6f4-b43b-4b08-91ad-c06cd8191704"
+ "9e6eebe9-effd-4bb1-91cd-ab598678cfb0"
],
"x-ms-correlation-request-id": [
- "7315d6f4-b43b-4b08-91ad-c06cd8191704"
+ "9e6eebe9-effd-4bb1-91cd-ab598678cfb0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223552Z:7315d6f4-b43b-4b08-91ad-c06cd8191704"
+ "NORTHCENTRALUS:20200514T212703Z:9e6eebe9-effd-4bb1-91cd-ab598678cfb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21930,7 +10968,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:51 GMT"
+ "Thu, 14 May 2020 21:27:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -21939,20 +10977,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "965fad5b-66f2-42ea-a939-49357199049b"
+ "52e9f384-93c2-41a8-b28e-75fa40bcc46d"
],
"Accept-Language": [
"en-US"
@@ -21975,16 +11013,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11758"
+ "11931"
],
"x-ms-request-id": [
- "ed4e7695-42f3-41be-b8f1-3dc65983f27d"
+ "8f79d27d-1ad4-4703-912c-cf6996ef1eef"
],
"x-ms-correlation-request-id": [
- "ed4e7695-42f3-41be-b8f1-3dc65983f27d"
+ "8f79d27d-1ad4-4703-912c-cf6996ef1eef"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223552Z:ed4e7695-42f3-41be-b8f1-3dc65983f27d"
+ "NORTHCENTRALUS:20200514T212704Z:8f79d27d-1ad4-4703-912c-cf6996ef1eef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -21993,7 +11031,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:52 GMT"
+ "Thu, 14 May 2020 21:27:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22002,20 +11040,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d559512b-d884-4160-88c0-fdc49b175641"
+ "f54eb2d9-32db-4af7-b844-2e6f5c2031a0"
],
"Accept-Language": [
"en-US"
@@ -22038,16 +11076,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11756"
+ "11929"
],
"x-ms-request-id": [
- "b75f38e1-1d24-49e4-bdf5-e7a05dffd556"
+ "54080ba9-29c3-4a9c-89a3-dfa5aab5255f"
],
"x-ms-correlation-request-id": [
- "b75f38e1-1d24-49e4-bdf5-e7a05dffd556"
+ "54080ba9-29c3-4a9c-89a3-dfa5aab5255f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223553Z:b75f38e1-1d24-49e4-bdf5-e7a05dffd556"
+ "NORTHCENTRALUS:20200514T212704Z:54080ba9-29c3-4a9c-89a3-dfa5aab5255f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22056,7 +11094,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:52 GMT"
+ "Thu, 14 May 2020 21:27:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22065,20 +11103,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59c7ad20-6b27-41d8-9885-14bf495ed2c2"
+ "e493c8f1-b1d9-4497-bb32-a9fdae0f06a3"
],
"Accept-Language": [
"en-US"
@@ -22101,16 +11139,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11754"
+ "11927"
],
"x-ms-request-id": [
- "4172505f-be58-4b50-a4ba-eda42366e97d"
+ "1b29380e-7467-4ef9-8037-87e3c8996bc3"
],
"x-ms-correlation-request-id": [
- "4172505f-be58-4b50-a4ba-eda42366e97d"
+ "1b29380e-7467-4ef9-8037-87e3c8996bc3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223553Z:4172505f-be58-4b50-a4ba-eda42366e97d"
+ "NORTHCENTRALUS:20200514T212704Z:1b29380e-7467-4ef9-8037-87e3c8996bc3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22119,7 +11157,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:53 GMT"
+ "Thu, 14 May 2020 21:27:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22128,20 +11166,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a929955-c589-402c-a870-6f0472aea89a"
+ "469b419e-2574-48eb-94eb-4c2241a5654d"
],
"Accept-Language": [
"en-US"
@@ -22164,16 +11202,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11752"
+ "11925"
],
"x-ms-request-id": [
- "7047a927-c70d-4dd5-bb3c-7336ac5706c7"
+ "6d42993f-ef20-4a89-a790-35ba472bd8d4"
],
"x-ms-correlation-request-id": [
- "7047a927-c70d-4dd5-bb3c-7336ac5706c7"
+ "6d42993f-ef20-4a89-a790-35ba472bd8d4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223554Z:7047a927-c70d-4dd5-bb3c-7336ac5706c7"
+ "NORTHCENTRALUS:20200514T212705Z:6d42993f-ef20-4a89-a790-35ba472bd8d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22182,7 +11220,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:53 GMT"
+ "Thu, 14 May 2020 21:27:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22191,20 +11229,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3c466d2-2f1d-408a-b282-602a56803256"
+ "83cdd3c7-e7e3-43bd-aad2-9bf84e111523"
],
"Accept-Language": [
"en-US"
@@ -22227,16 +11265,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11750"
+ "11923"
],
"x-ms-request-id": [
- "9e6b639d-dd97-4a2e-894f-ea208df16e14"
+ "c832ae3d-259c-49a3-b418-eac2697a56a9"
],
"x-ms-correlation-request-id": [
- "9e6b639d-dd97-4a2e-894f-ea208df16e14"
+ "c832ae3d-259c-49a3-b418-eac2697a56a9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223554Z:9e6b639d-dd97-4a2e-894f-ea208df16e14"
+ "NORTHCENTRALUS:20200514T212705Z:c832ae3d-259c-49a3-b418-eac2697a56a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22245,7 +11283,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:53 GMT"
+ "Thu, 14 May 2020 21:27:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22254,20 +11292,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:00.3478225Z\",\r\n \"duration\": \"PT11.2317034S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be3a1743-025d-4003-8a87-481c7776336a"
+ "e111babe-e07f-40b8-b01a-fb420ea7255e"
],
"Accept-Language": [
"en-US"
@@ -22290,16 +11328,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11748"
+ "11921"
],
"x-ms-request-id": [
- "d9dedd32-0d8e-43c4-b01b-b7bdb9504057"
+ "5d9fe4a0-1182-42a3-a654-7aacbfd604bb"
],
"x-ms-correlation-request-id": [
- "d9dedd32-0d8e-43c4-b01b-b7bdb9504057"
+ "5d9fe4a0-1182-42a3-a654-7aacbfd604bb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223555Z:d9dedd32-0d8e-43c4-b01b-b7bdb9504057"
+ "NORTHCENTRALUS:20200514T212706Z:5d9fe4a0-1182-42a3-a654-7aacbfd604bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22308,7 +11346,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:54 GMT"
+ "Thu, 14 May 2020 21:27:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22317,20 +11355,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5bc80e50-5292-4385-9a28-18641d13e397"
+ "4b74f82b-8f7f-4d28-a8a1-384514e2c4dc"
],
"Accept-Language": [
"en-US"
@@ -22353,16 +11391,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11746"
+ "11919"
],
"x-ms-request-id": [
- "260c3d09-d9b2-48ae-85c3-58c483094ba9"
+ "296a25d1-d78b-41b1-866f-4bb04a581909"
],
"x-ms-correlation-request-id": [
- "260c3d09-d9b2-48ae-85c3-58c483094ba9"
+ "296a25d1-d78b-41b1-866f-4bb04a581909"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223555Z:260c3d09-d9b2-48ae-85c3-58c483094ba9"
+ "NORTHCENTRALUS:20200514T212706Z:296a25d1-d78b-41b1-866f-4bb04a581909"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22371,7 +11409,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:54 GMT"
+ "Thu, 14 May 2020 21:27:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22380,20 +11418,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e8bd00c-0319-49e4-998c-1f0bf8c57f08"
+ "b6e4ff11-eb4f-4614-975f-eac54d87ecc3"
],
"Accept-Language": [
"en-US"
@@ -22416,16 +11454,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11744"
+ "11917"
],
"x-ms-request-id": [
- "a8d5f4a5-82c1-4c8c-a42e-71ee6261f0eb"
+ "e29de53b-365d-4538-b7f2-b93fb8f76144"
],
"x-ms-correlation-request-id": [
- "a8d5f4a5-82c1-4c8c-a42e-71ee6261f0eb"
+ "e29de53b-365d-4538-b7f2-b93fb8f76144"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223555Z:a8d5f4a5-82c1-4c8c-a42e-71ee6261f0eb"
+ "NORTHCENTRALUS:20200514T212707Z:e29de53b-365d-4538-b7f2-b93fb8f76144"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22434,7 +11472,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:55 GMT"
+ "Thu, 14 May 2020 21:27:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22443,20 +11481,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03174a5a-c7b3-4640-a49a-3a5818a68872"
+ "8b0acbb4-188e-4032-9576-a2d12234e9ca"
],
"Accept-Language": [
"en-US"
@@ -22479,16 +11517,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11742"
+ "11915"
],
"x-ms-request-id": [
- "4c046f85-ce7e-4013-a814-bd9787535ed4"
+ "949048ca-68bc-42d5-b4e6-ce9e0eb41cf1"
],
"x-ms-correlation-request-id": [
- "4c046f85-ce7e-4013-a814-bd9787535ed4"
+ "949048ca-68bc-42d5-b4e6-ce9e0eb41cf1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223556Z:4c046f85-ce7e-4013-a814-bd9787535ed4"
+ "NORTHCENTRALUS:20200514T212707Z:949048ca-68bc-42d5-b4e6-ce9e0eb41cf1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22497,7 +11535,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:55 GMT"
+ "Thu, 14 May 2020 21:27:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22506,20 +11544,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9f7059b-361e-4f67-9d79-5a5395fb0915"
+ "cc0f9135-75f7-42de-b25f-7bad2ba6569e"
],
"Accept-Language": [
"en-US"
@@ -22542,16 +11580,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11740"
+ "11913"
],
"x-ms-request-id": [
- "5706f4a0-1efb-4e16-ba8f-96cd8484f92d"
+ "a0990e1f-346f-416b-86cb-7f9c0ecd2690"
],
"x-ms-correlation-request-id": [
- "5706f4a0-1efb-4e16-ba8f-96cd8484f92d"
+ "a0990e1f-346f-416b-86cb-7f9c0ecd2690"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223556Z:5706f4a0-1efb-4e16-ba8f-96cd8484f92d"
+ "NORTHCENTRALUS:20200514T212707Z:a0990e1f-346f-416b-86cb-7f9c0ecd2690"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22560,7 +11598,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:56 GMT"
+ "Thu, 14 May 2020 21:27:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22569,20 +11607,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2177218c-5425-4355-b924-d216b5b469e7"
+ "ce59d645-755a-4ac7-9c9c-9c1ff1a975cd"
],
"Accept-Language": [
"en-US"
@@ -22605,16 +11643,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11738"
+ "11911"
],
"x-ms-request-id": [
- "77d82f48-0a7c-4cd0-a419-3170f29e3b39"
+ "e3a9e8c7-7e35-42c0-badd-26e41138b228"
],
"x-ms-correlation-request-id": [
- "77d82f48-0a7c-4cd0-a419-3170f29e3b39"
+ "e3a9e8c7-7e35-42c0-badd-26e41138b228"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223557Z:77d82f48-0a7c-4cd0-a419-3170f29e3b39"
+ "NORTHCENTRALUS:20200514T212708Z:e3a9e8c7-7e35-42c0-badd-26e41138b228"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22623,7 +11661,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:56 GMT"
+ "Thu, 14 May 2020 21:27:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22632,20 +11670,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1e6a449-07fc-46e2-9182-002bfd3cb332"
+ "e59b498d-dfae-42e8-a4f4-8ad40caf92a1"
],
"Accept-Language": [
"en-US"
@@ -22668,16 +11706,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11736"
+ "11909"
],
"x-ms-request-id": [
- "65ec25fc-aec2-4d91-a52f-9e3eba858789"
+ "a5c72111-e494-4bb4-9601-364faeed3188"
],
"x-ms-correlation-request-id": [
- "65ec25fc-aec2-4d91-a52f-9e3eba858789"
+ "a5c72111-e494-4bb4-9601-364faeed3188"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223557Z:65ec25fc-aec2-4d91-a52f-9e3eba858789"
+ "NORTHCENTRALUS:20200514T212708Z:a5c72111-e494-4bb4-9601-364faeed3188"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22686,7 +11724,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:56 GMT"
+ "Thu, 14 May 2020 21:27:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22695,20 +11733,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0cd598f2-1ca4-4e2d-9a8d-04bdec2d310e"
+ "d1f0b2a6-3279-40b4-9fdf-b8c324588f6b"
],
"Accept-Language": [
"en-US"
@@ -22731,16 +11769,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11734"
+ "11907"
],
"x-ms-request-id": [
- "e760dd3e-00d2-449e-bd8e-4f25cb3aa519"
+ "cbab1961-2ca3-4913-9b8c-d6ac8bc7c518"
],
"x-ms-correlation-request-id": [
- "e760dd3e-00d2-449e-bd8e-4f25cb3aa519"
+ "cbab1961-2ca3-4913-9b8c-d6ac8bc7c518"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223558Z:e760dd3e-00d2-449e-bd8e-4f25cb3aa519"
+ "NORTHCENTRALUS:20200514T212709Z:cbab1961-2ca3-4913-9b8c-d6ac8bc7c518"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22749,7 +11787,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:57 GMT"
+ "Thu, 14 May 2020 21:27:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22758,20 +11796,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db061396-71b2-4c7e-b4ac-eafd01f37965"
+ "584f23f0-b608-450c-9b02-c64285dda7a7"
],
"Accept-Language": [
"en-US"
@@ -22794,16 +11832,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11732"
+ "11905"
],
"x-ms-request-id": [
- "3a1cb9ca-b271-4068-951f-c0da581fb39b"
+ "16488b33-8eef-4a56-838b-549fbed9160e"
],
"x-ms-correlation-request-id": [
- "3a1cb9ca-b271-4068-951f-c0da581fb39b"
+ "16488b33-8eef-4a56-838b-549fbed9160e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223558Z:3a1cb9ca-b271-4068-951f-c0da581fb39b"
+ "NORTHCENTRALUS:20200514T212709Z:16488b33-8eef-4a56-838b-549fbed9160e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22812,7 +11850,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:57 GMT"
+ "Thu, 14 May 2020 21:27:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22821,20 +11859,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "212d5393-4698-4dc2-a5b6-98c90261e0b9"
+ "1ffbbae5-f891-43ed-a066-1acb8f696a41"
],
"Accept-Language": [
"en-US"
@@ -22857,16 +11895,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11730"
+ "11903"
],
"x-ms-request-id": [
- "52b4d384-326e-4f29-9b39-916a31587eec"
+ "8cf5b713-439b-4bff-b3c9-c87054559083"
],
"x-ms-correlation-request-id": [
- "52b4d384-326e-4f29-9b39-916a31587eec"
+ "8cf5b713-439b-4bff-b3c9-c87054559083"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223558Z:52b4d384-326e-4f29-9b39-916a31587eec"
+ "NORTHCENTRALUS:20200514T212710Z:8cf5b713-439b-4bff-b3c9-c87054559083"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22875,7 +11913,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:58 GMT"
+ "Thu, 14 May 2020 21:27:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22884,20 +11922,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:48.0388435Z\",\r\n \"duration\": \"PT46.9937203S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2a618f8-f1b7-4e06-8fee-83721bcfb467"
+ "098459d7-88d6-4987-8c60-e1d3d0024363"
],
"Accept-Language": [
"en-US"
@@ -22920,16 +11958,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11728"
+ "11901"
],
"x-ms-request-id": [
- "c2226c2b-9d61-43c7-afb8-e2f975169d02"
+ "413de7e9-0a7d-458c-85f7-a096152a017d"
],
"x-ms-correlation-request-id": [
- "c2226c2b-9d61-43c7-afb8-e2f975169d02"
+ "413de7e9-0a7d-458c-85f7-a096152a017d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223559Z:c2226c2b-9d61-43c7-afb8-e2f975169d02"
+ "NORTHCENTRALUS:20200514T212710Z:413de7e9-0a7d-458c-85f7-a096152a017d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -22938,7 +11976,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:58 GMT"
+ "Thu, 14 May 2020 21:27:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -22947,20 +11985,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13e423e3-3989-4650-ad61-60e7db578e20"
+ "8a1578dd-e495-44fb-9661-b660cd7142b1"
],
"Accept-Language": [
"en-US"
@@ -22983,16 +12021,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11726"
+ "11899"
],
"x-ms-request-id": [
- "c2ee6a96-db14-4e4a-b2aa-70f7ef5fad65"
+ "168f5ccd-adf0-4dc2-ba9f-fc0b9d005cb1"
],
"x-ms-correlation-request-id": [
- "c2ee6a96-db14-4e4a-b2aa-70f7ef5fad65"
+ "168f5ccd-adf0-4dc2-ba9f-fc0b9d005cb1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223559Z:c2ee6a96-db14-4e4a-b2aa-70f7ef5fad65"
+ "NORTHCENTRALUS:20200514T212710Z:168f5ccd-adf0-4dc2-ba9f-fc0b9d005cb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23001,7 +12039,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:59 GMT"
+ "Thu, 14 May 2020 21:27:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23010,20 +12048,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2686c1e-9773-4b9d-a335-d3ed7ae85c40"
+ "de04c385-4261-4175-acaa-57bdf50ce789"
],
"Accept-Language": [
"en-US"
@@ -23046,16 +12084,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11724"
+ "11897"
],
"x-ms-request-id": [
- "ae60687a-599f-4b5c-af5a-63c3b7e491bc"
+ "cb16c1cb-9a0e-46e0-98db-c15bce6d3876"
],
"x-ms-correlation-request-id": [
- "ae60687a-599f-4b5c-af5a-63c3b7e491bc"
+ "cb16c1cb-9a0e-46e0-98db-c15bce6d3876"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223600Z:ae60687a-599f-4b5c-af5a-63c3b7e491bc"
+ "NORTHCENTRALUS:20200514T212711Z:cb16c1cb-9a0e-46e0-98db-c15bce6d3876"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23064,7 +12102,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:59 GMT"
+ "Thu, 14 May 2020 21:27:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23073,20 +12111,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7638866-1680-4e39-b282-1231b55372c7"
+ "4ebf7d72-0407-4774-9478-0c483283df63"
],
"Accept-Language": [
"en-US"
@@ -23109,16 +12147,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11722"
+ "11895"
],
"x-ms-request-id": [
- "eb065a3b-08db-4ec2-9342-87ddbea3aaa3"
+ "50fbd0e2-e5fb-4f7b-bf88-218ccffc8313"
],
"x-ms-correlation-request-id": [
- "eb065a3b-08db-4ec2-9342-87ddbea3aaa3"
+ "50fbd0e2-e5fb-4f7b-bf88-218ccffc8313"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223600Z:eb065a3b-08db-4ec2-9342-87ddbea3aaa3"
+ "NORTHCENTRALUS:20200514T212711Z:50fbd0e2-e5fb-4f7b-bf88-218ccffc8313"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23127,7 +12165,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:35:59 GMT"
+ "Thu, 14 May 2020 21:27:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23136,20 +12174,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1e7bce5-2f92-431b-a414-75e07d3d70f2"
+ "b4e9137a-ad2f-47b1-995a-3636299cbcee"
],
"Accept-Language": [
"en-US"
@@ -23172,16 +12210,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11720"
+ "11893"
],
"x-ms-request-id": [
- "5e92207d-41d2-4e38-b03a-0fe2f9803bef"
+ "c001c43c-e886-49e5-9a48-e05d5bed9a5d"
],
"x-ms-correlation-request-id": [
- "5e92207d-41d2-4e38-b03a-0fe2f9803bef"
+ "c001c43c-e886-49e5-9a48-e05d5bed9a5d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223601Z:5e92207d-41d2-4e38-b03a-0fe2f9803bef"
+ "NORTHCENTRALUS:20200514T212712Z:c001c43c-e886-49e5-9a48-e05d5bed9a5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23190,7 +12228,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:00 GMT"
+ "Thu, 14 May 2020 21:27:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23199,20 +12237,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c311ec02-0238-4fe6-a0e1-29c35698a3bf"
+ "593c6a30-37fb-4691-8d15-08024aa24621"
],
"Accept-Language": [
"en-US"
@@ -23235,16 +12273,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11718"
+ "11891"
],
"x-ms-request-id": [
- "2bd41754-fccb-440a-9600-3f7e0e2e6518"
+ "f03044fb-f8ee-4e70-a903-564406002c78"
],
"x-ms-correlation-request-id": [
- "2bd41754-fccb-440a-9600-3f7e0e2e6518"
+ "f03044fb-f8ee-4e70-a903-564406002c78"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223601Z:2bd41754-fccb-440a-9600-3f7e0e2e6518"
+ "NORTHCENTRALUS:20200514T212712Z:f03044fb-f8ee-4e70-a903-564406002c78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23253,7 +12291,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:00 GMT"
+ "Thu, 14 May 2020 21:27:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23262,20 +12300,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "576b689d-a3a9-4d36-9a4c-80adf17ebd7b"
+ "b04ee3d7-c0a8-4b51-a454-16fb1f492e28"
],
"Accept-Language": [
"en-US"
@@ -23298,16 +12336,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11716"
+ "11889"
],
"x-ms-request-id": [
- "790b17cf-8275-45c6-90da-f81abfc544dd"
+ "45a04b95-4c0a-4fde-9105-f530572dc47b"
],
"x-ms-correlation-request-id": [
- "790b17cf-8275-45c6-90da-f81abfc544dd"
+ "45a04b95-4c0a-4fde-9105-f530572dc47b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223602Z:790b17cf-8275-45c6-90da-f81abfc544dd"
+ "NORTHCENTRALUS:20200514T212713Z:45a04b95-4c0a-4fde-9105-f530572dc47b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23316,7 +12354,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:01 GMT"
+ "Thu, 14 May 2020 21:27:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23325,20 +12363,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:05.7887327Z\",\r\n \"duration\": \"PT16.6726136S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa631732-7500-4150-b3b0-832b47c2dfd8"
+ "b60c0350-2ab2-44e0-a1d5-a0fd558f511f"
],
"Accept-Language": [
"en-US"
@@ -23361,16 +12399,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11714"
+ "11887"
],
"x-ms-request-id": [
- "54c79cef-a2c7-4e7a-82e0-c6f25d292bbc"
+ "ea8ee29d-31e9-4f86-8180-30f5faf65ba5"
],
"x-ms-correlation-request-id": [
- "54c79cef-a2c7-4e7a-82e0-c6f25d292bbc"
+ "ea8ee29d-31e9-4f86-8180-30f5faf65ba5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223602Z:54c79cef-a2c7-4e7a-82e0-c6f25d292bbc"
+ "NORTHCENTRALUS:20200514T212713Z:ea8ee29d-31e9-4f86-8180-30f5faf65ba5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23379,7 +12417,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:01 GMT"
+ "Thu, 14 May 2020 21:27:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23388,20 +12426,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "990ed06a-5fc6-4ec9-b0f4-abe63f9d41ea"
+ "ac9773f9-7894-4a93-942f-c179863e99da"
],
"Accept-Language": [
"en-US"
@@ -23424,16 +12462,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11712"
+ "11885"
],
"x-ms-request-id": [
- "bca988bb-a24f-4e98-b196-e4b26df9a146"
+ "18bd65cf-f962-4dcf-aa44-17264dda6d6c"
],
"x-ms-correlation-request-id": [
- "bca988bb-a24f-4e98-b196-e4b26df9a146"
+ "18bd65cf-f962-4dcf-aa44-17264dda6d6c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223602Z:bca988bb-a24f-4e98-b196-e4b26df9a146"
+ "NORTHCENTRALUS:20200514T212713Z:18bd65cf-f962-4dcf-aa44-17264dda6d6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23442,7 +12480,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:02 GMT"
+ "Thu, 14 May 2020 21:27:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23451,20 +12489,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79664ad8-187c-4b4f-a371-28e70086d5f5"
+ "068d6a19-9e34-4743-975f-2294b7828c21"
],
"Accept-Language": [
"en-US"
@@ -23487,16 +12525,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11710"
+ "11883"
],
"x-ms-request-id": [
- "a35df162-28ba-4db5-9e89-0c114cdb998b"
+ "b9ee06c3-9f81-4fb2-8321-cef3449462ae"
],
"x-ms-correlation-request-id": [
- "a35df162-28ba-4db5-9e89-0c114cdb998b"
+ "b9ee06c3-9f81-4fb2-8321-cef3449462ae"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223603Z:a35df162-28ba-4db5-9e89-0c114cdb998b"
+ "NORTHCENTRALUS:20200514T212714Z:b9ee06c3-9f81-4fb2-8321-cef3449462ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23505,7 +12543,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:02 GMT"
+ "Thu, 14 May 2020 21:27:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23514,20 +12552,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42836dd3-c50f-43c6-961c-f7900e8ded9d"
+ "26b3606c-0e15-4137-9c4c-7da799a78ea0"
],
"Accept-Language": [
"en-US"
@@ -23550,16 +12588,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11708"
+ "11881"
],
"x-ms-request-id": [
- "feea9fee-9129-490c-af65-0869d6246286"
+ "966bd1b2-60dc-4136-afc8-e6a3f234b85c"
],
"x-ms-correlation-request-id": [
- "feea9fee-9129-490c-af65-0869d6246286"
+ "966bd1b2-60dc-4136-afc8-e6a3f234b85c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223603Z:feea9fee-9129-490c-af65-0869d6246286"
+ "NORTHCENTRALUS:20200514T212714Z:966bd1b2-60dc-4136-afc8-e6a3f234b85c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23568,7 +12606,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:02 GMT"
+ "Thu, 14 May 2020 21:27:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23577,20 +12615,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22bb9ea5-ebb2-42da-b79a-6b8598874fed"
+ "ee46bfcd-ee1f-41e7-b2d9-205d2a40ad4c"
],
"Accept-Language": [
"en-US"
@@ -23613,16 +12651,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11706"
+ "11879"
],
"x-ms-request-id": [
- "257a4b77-c69c-4777-a870-875a7530b415"
+ "bf3887d9-4f7c-4678-b453-96e6bb7368ae"
],
"x-ms-correlation-request-id": [
- "257a4b77-c69c-4777-a870-875a7530b415"
+ "bf3887d9-4f7c-4678-b453-96e6bb7368ae"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223604Z:257a4b77-c69c-4777-a870-875a7530b415"
+ "NORTHCENTRALUS:20200514T212715Z:bf3887d9-4f7c-4678-b453-96e6bb7368ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23631,7 +12669,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:03 GMT"
+ "Thu, 14 May 2020 21:27:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23640,20 +12678,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1407076-8819-4cce-8a38-da2cbf67ba27"
+ "357a43b3-de84-4737-b1d5-38c3737bffe1"
],
"Accept-Language": [
"en-US"
@@ -23676,16 +12714,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11704"
+ "11877"
],
"x-ms-request-id": [
- "33190efb-bb16-42c0-ab4e-d1c260da0410"
+ "571974cc-1ba1-457b-abb9-83d7ce4eff3b"
],
"x-ms-correlation-request-id": [
- "33190efb-bb16-42c0-ab4e-d1c260da0410"
+ "571974cc-1ba1-457b-abb9-83d7ce4eff3b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223604Z:33190efb-bb16-42c0-ab4e-d1c260da0410"
+ "NORTHCENTRALUS:20200514T212715Z:571974cc-1ba1-457b-abb9-83d7ce4eff3b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23694,7 +12732,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:03 GMT"
+ "Thu, 14 May 2020 21:27:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23703,20 +12741,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e052259-624e-4c45-bbd7-0a066144c99d"
+ "ded826b4-2335-4ab0-a81c-64da337c29dc"
],
"Accept-Language": [
"en-US"
@@ -23739,16 +12777,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11702"
+ "11875"
],
"x-ms-request-id": [
- "bb18621a-68b4-4718-9495-d25d0109341e"
+ "41f6e43c-65dd-4a0c-80f9-0bdaf56e123a"
],
"x-ms-correlation-request-id": [
- "bb18621a-68b4-4718-9495-d25d0109341e"
+ "41f6e43c-65dd-4a0c-80f9-0bdaf56e123a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223604Z:bb18621a-68b4-4718-9495-d25d0109341e"
+ "NORTHCENTRALUS:20200514T212716Z:41f6e43c-65dd-4a0c-80f9-0bdaf56e123a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23757,7 +12795,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:04 GMT"
+ "Thu, 14 May 2020 21:27:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23766,20 +12804,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "354e942d-3fe5-41bd-beaf-f24cec2ad047"
+ "451844d0-1f83-412c-8a0e-711d3ca2fd36"
],
"Accept-Language": [
"en-US"
@@ -23802,16 +12840,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11700"
+ "11873"
],
"x-ms-request-id": [
- "ce0a10b4-1c2f-4bbe-b0bd-4fe3c04972c5"
+ "aa33174d-2631-4ee3-8245-48d5d27ff887"
],
"x-ms-correlation-request-id": [
- "ce0a10b4-1c2f-4bbe-b0bd-4fe3c04972c5"
+ "aa33174d-2631-4ee3-8245-48d5d27ff887"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223605Z:ce0a10b4-1c2f-4bbe-b0bd-4fe3c04972c5"
+ "NORTHCENTRALUS:20200514T212716Z:aa33174d-2631-4ee3-8245-48d5d27ff887"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23820,7 +12858,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:04 GMT"
+ "Thu, 14 May 2020 21:27:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23829,20 +12867,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78b11264-61ec-4c80-85c4-628d76bf2e5b"
+ "164bf493-a4f4-450f-9823-b8c47833617d"
],
"Accept-Language": [
"en-US"
@@ -23865,16 +12903,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11698"
+ "11871"
],
"x-ms-request-id": [
- "17ca911b-6a8b-4ac9-9b77-ef73a6ce6a48"
+ "cf51fd1d-d9b8-4ece-a77a-5a8549765505"
],
"x-ms-correlation-request-id": [
- "17ca911b-6a8b-4ac9-9b77-ef73a6ce6a48"
+ "cf51fd1d-d9b8-4ece-a77a-5a8549765505"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223605Z:17ca911b-6a8b-4ac9-9b77-ef73a6ce6a48"
+ "NORTHCENTRALUS:20200514T212716Z:cf51fd1d-d9b8-4ece-a77a-5a8549765505"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23883,7 +12921,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:05 GMT"
+ "Thu, 14 May 2020 21:27:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23892,20 +12930,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8b112bba-9410-47be-99e8-739af79da21e"
+ "df94d3e1-144d-4bbc-845a-eabf61ef5676"
],
"Accept-Language": [
"en-US"
@@ -23928,16 +12966,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11696"
+ "11869"
],
"x-ms-request-id": [
- "c33914c6-2a85-4cb2-b8d1-7f404450d6de"
+ "79d255cd-9b2f-41e8-aa5b-7109408bce2f"
],
"x-ms-correlation-request-id": [
- "c33914c6-2a85-4cb2-b8d1-7f404450d6de"
+ "79d255cd-9b2f-41e8-aa5b-7109408bce2f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223606Z:c33914c6-2a85-4cb2-b8d1-7f404450d6de"
+ "NORTHCENTRALUS:20200514T212717Z:79d255cd-9b2f-41e8-aa5b-7109408bce2f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -23946,7 +12984,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:05 GMT"
+ "Thu, 14 May 2020 21:27:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -23955,20 +12993,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf70fce1-6b74-4790-b362-43e66dea8266"
+ "bdf7f7c9-3546-48b6-b65d-70e90a20aecd"
],
"Accept-Language": [
"en-US"
@@ -23991,16 +13029,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11694"
+ "11867"
],
"x-ms-request-id": [
- "32bb8d97-4f04-4327-89a4-cb0c27e235f7"
+ "5e308144-6fc9-44c7-9833-ba70b5a40fbb"
],
"x-ms-correlation-request-id": [
- "32bb8d97-4f04-4327-89a4-cb0c27e235f7"
+ "5e308144-6fc9-44c7-9833-ba70b5a40fbb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223606Z:32bb8d97-4f04-4327-89a4-cb0c27e235f7"
+ "NORTHCENTRALUS:20200514T212717Z:5e308144-6fc9-44c7-9833-ba70b5a40fbb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24009,7 +13047,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:05 GMT"
+ "Thu, 14 May 2020 21:27:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24018,20 +13056,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70379ab4-6a1b-4b18-8d44-21c2da45a87f"
+ "d79d357a-18fe-42e4-98ff-43758c014711"
],
"Accept-Language": [
"en-US"
@@ -24054,16 +13092,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11692"
+ "11865"
],
"x-ms-request-id": [
- "c5270af5-a35a-456e-ae2d-a4871280f3c7"
+ "4d0902e4-e9e6-430b-b245-d304b50fcd28"
],
"x-ms-correlation-request-id": [
- "c5270af5-a35a-456e-ae2d-a4871280f3c7"
+ "4d0902e4-e9e6-430b-b245-d304b50fcd28"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223607Z:c5270af5-a35a-456e-ae2d-a4871280f3c7"
+ "NORTHCENTRALUS:20200514T212718Z:4d0902e4-e9e6-430b-b245-d304b50fcd28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24072,7 +13110,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:06 GMT"
+ "Thu, 14 May 2020 21:27:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24081,20 +13119,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a70bc7b-5fc5-40e0-8c09-6764c62c0291"
+ "7ea6e4cf-8719-49dc-892a-25c0ec80b8a1"
],
"Accept-Language": [
"en-US"
@@ -24117,16 +13155,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11690"
+ "11863"
],
"x-ms-request-id": [
- "a501e4f3-bad7-46d7-8824-0b5ccd278920"
+ "6e51819a-d6a7-4e51-8ac0-a946ab63062c"
],
"x-ms-correlation-request-id": [
- "a501e4f3-bad7-46d7-8824-0b5ccd278920"
+ "6e51819a-d6a7-4e51-8ac0-a946ab63062c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223607Z:a501e4f3-bad7-46d7-8824-0b5ccd278920"
+ "NORTHCENTRALUS:20200514T212718Z:6e51819a-d6a7-4e51-8ac0-a946ab63062c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24135,7 +13173,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:06 GMT"
+ "Thu, 14 May 2020 21:27:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24144,20 +13182,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f3e6fad4-b287-43fb-98b6-7d881b58209d"
+ "86ecad2d-833a-4f48-ac9b-cbe36d3988de"
],
"Accept-Language": [
"en-US"
@@ -24180,16 +13218,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11688"
+ "11861"
],
"x-ms-request-id": [
- "3253664e-1231-46ae-9fbf-84074b743dea"
+ "8c6f11d1-1fce-4731-8d1c-597a3bcd73b9"
],
"x-ms-correlation-request-id": [
- "3253664e-1231-46ae-9fbf-84074b743dea"
+ "8c6f11d1-1fce-4731-8d1c-597a3bcd73b9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223607Z:3253664e-1231-46ae-9fbf-84074b743dea"
+ "NORTHCENTRALUS:20200514T212719Z:8c6f11d1-1fce-4731-8d1c-597a3bcd73b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24198,7 +13236,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:07 GMT"
+ "Thu, 14 May 2020 21:27:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24207,20 +13245,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f3a46ef-0aea-459e-9d47-dd3e496dd2de"
+ "a0ccac74-fb96-4c00-bfd3-653f34c3fefb"
],
"Accept-Language": [
"en-US"
@@ -24243,16 +13281,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11686"
+ "11859"
],
"x-ms-request-id": [
- "2ec86cb4-1ddc-4256-a6d0-4f0b6a034362"
+ "62a6107c-659a-4e46-a2b2-32cb7ce4a3a0"
],
"x-ms-correlation-request-id": [
- "2ec86cb4-1ddc-4256-a6d0-4f0b6a034362"
+ "62a6107c-659a-4e46-a2b2-32cb7ce4a3a0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223608Z:2ec86cb4-1ddc-4256-a6d0-4f0b6a034362"
+ "NORTHCENTRALUS:20200514T212719Z:62a6107c-659a-4e46-a2b2-32cb7ce4a3a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24261,7 +13299,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:07 GMT"
+ "Thu, 14 May 2020 21:27:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24270,20 +13308,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a46dad4f-fedc-4e8a-9cee-3abb646fbbfb"
+ "5e1491f9-b279-41df-84fd-57894aeb3374"
],
"Accept-Language": [
"en-US"
@@ -24306,16 +13344,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11684"
+ "11857"
],
"x-ms-request-id": [
- "a30f3ac2-c8cf-4f35-96d1-4717682da397"
+ "a423e3b3-3038-4d1d-8d69-afa18caa7bfe"
],
"x-ms-correlation-request-id": [
- "a30f3ac2-c8cf-4f35-96d1-4717682da397"
+ "a423e3b3-3038-4d1d-8d69-afa18caa7bfe"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223608Z:a30f3ac2-c8cf-4f35-96d1-4717682da397"
+ "NORTHCENTRALUS:20200514T212719Z:a423e3b3-3038-4d1d-8d69-afa18caa7bfe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24324,7 +13362,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:07 GMT"
+ "Thu, 14 May 2020 21:27:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24333,20 +13371,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "abeadf33-52d9-4bb7-87b0-b80936a06c25"
+ "b6137c56-0e79-457e-a547-ad0f5d25c078"
],
"Accept-Language": [
"en-US"
@@ -24369,16 +13407,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11682"
+ "11855"
],
"x-ms-request-id": [
- "25507a76-8c9c-4b67-bd4f-b2a11aaefb26"
+ "02b09a05-28f9-494e-9a7c-aa80d8da4d2b"
],
"x-ms-correlation-request-id": [
- "25507a76-8c9c-4b67-bd4f-b2a11aaefb26"
+ "02b09a05-28f9-494e-9a7c-aa80d8da4d2b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223609Z:25507a76-8c9c-4b67-bd4f-b2a11aaefb26"
+ "NORTHCENTRALUS:20200514T212720Z:02b09a05-28f9-494e-9a7c-aa80d8da4d2b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24387,7 +13425,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:08 GMT"
+ "Thu, 14 May 2020 21:27:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24396,20 +13434,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2777d709-a0b6-48bd-9d9f-11080f702d95"
+ "414db2cf-8164-4198-a64e-62e72053ed40"
],
"Accept-Language": [
"en-US"
@@ -24432,16 +13470,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11680"
+ "11853"
],
"x-ms-request-id": [
- "e46505e2-c93f-4317-b279-1e0363c62ff3"
+ "e150d17a-d2ab-4d84-af73-1b9309bcd606"
],
"x-ms-correlation-request-id": [
- "e46505e2-c93f-4317-b279-1e0363c62ff3"
+ "e150d17a-d2ab-4d84-af73-1b9309bcd606"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223609Z:e46505e2-c93f-4317-b279-1e0363c62ff3"
+ "NORTHCENTRALUS:20200514T212720Z:e150d17a-d2ab-4d84-af73-1b9309bcd606"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24450,7 +13488,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:08 GMT"
+ "Thu, 14 May 2020 21:27:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24459,20 +13497,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1422"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:13.0228961Z\",\r\n \"duration\": \"PT23.906777S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02d6b843-545a-49d0-9f95-c2cc3d0314e0"
+ "a1d5ed47-d2d1-453a-81e8-cef841f71373"
],
"Accept-Language": [
"en-US"
@@ -24495,16 +13533,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11678"
+ "11851"
],
"x-ms-request-id": [
- "ee305922-aae9-4efa-a796-2ea4a409a5d2"
+ "38c6ea57-1a57-43f1-9fdd-5ee9e94a3f57"
],
"x-ms-correlation-request-id": [
- "ee305922-aae9-4efa-a796-2ea4a409a5d2"
+ "38c6ea57-1a57-43f1-9fdd-5ee9e94a3f57"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223610Z:ee305922-aae9-4efa-a796-2ea4a409a5d2"
+ "NORTHCENTRALUS:20200514T212721Z:38c6ea57-1a57-43f1-9fdd-5ee9e94a3f57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24513,7 +13551,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:09 GMT"
+ "Thu, 14 May 2020 21:27:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24522,20 +13560,20 @@
"-1"
],
"Content-Length": [
- "1425"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:35:59.2620101Z\",\r\n \"duration\": \"PT58.2168869S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f8d171f-535b-4e8c-bcba-372af0a46057"
+ "7d1adb99-87c5-462a-9c4d-0c9248679c52"
],
"Accept-Language": [
"en-US"
@@ -24558,16 +13596,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11676"
+ "11849"
],
"x-ms-request-id": [
- "60e58f4f-d20f-4c96-a0d4-ac869f4b0b53"
+ "95e48949-2759-4877-9dd3-b66d647afe7a"
],
"x-ms-correlation-request-id": [
- "60e58f4f-d20f-4c96-a0d4-ac869f4b0b53"
+ "95e48949-2759-4877-9dd3-b66d647afe7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223610Z:60e58f4f-d20f-4c96-a0d4-ac869f4b0b53"
+ "NORTHCENTRALUS:20200514T212721Z:95e48949-2759-4877-9dd3-b66d647afe7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24576,7 +13614,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:09 GMT"
+ "Thu, 14 May 2020 21:27:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24585,20 +13623,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9eea864a-905f-43e5-900c-7197304699dd"
+ "768c7f20-b8ae-4421-83b6-c0d83d1881bc"
],
"Accept-Language": [
"en-US"
@@ -24621,16 +13659,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11674"
+ "11847"
],
"x-ms-request-id": [
- "d31f26be-7796-4092-96fb-15211858240b"
+ "38f41061-4c09-49c8-b164-728480c51fad"
],
"x-ms-correlation-request-id": [
- "d31f26be-7796-4092-96fb-15211858240b"
+ "38f41061-4c09-49c8-b164-728480c51fad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223610Z:d31f26be-7796-4092-96fb-15211858240b"
+ "NORTHCENTRALUS:20200514T212722Z:38f41061-4c09-49c8-b164-728480c51fad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24639,7 +13677,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:10 GMT"
+ "Thu, 14 May 2020 21:27:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24648,20 +13686,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1263dd89-22d4-400b-9e4d-d361012dd037"
+ "bf690561-80c6-4b03-b942-603f2bf02fb0"
],
"Accept-Language": [
"en-US"
@@ -24684,16 +13722,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11672"
+ "11845"
],
"x-ms-request-id": [
- "151815bd-e07b-4edf-9f63-82c952e4aebb"
+ "92a0b6da-4174-4349-a44d-bbe0acc0826b"
],
"x-ms-correlation-request-id": [
- "151815bd-e07b-4edf-9f63-82c952e4aebb"
+ "92a0b6da-4174-4349-a44d-bbe0acc0826b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223611Z:151815bd-e07b-4edf-9f63-82c952e4aebb"
+ "NORTHCENTRALUS:20200514T212722Z:92a0b6da-4174-4349-a44d-bbe0acc0826b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24702,7 +13740,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:10 GMT"
+ "Thu, 14 May 2020 21:27:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24711,20 +13749,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b328c12c-6d42-4c05-93c4-9a0416b0872c"
+ "2cc2b232-dd97-46b9-9f52-c89d47cc4d86"
],
"Accept-Language": [
"en-US"
@@ -24747,16 +13785,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11670"
+ "11843"
],
"x-ms-request-id": [
- "a56c9ccc-dcad-40bd-96a3-0e99b8f60b25"
+ "9f84c1e5-bf8d-49cb-b8bd-7dff89e0e2f4"
],
"x-ms-correlation-request-id": [
- "a56c9ccc-dcad-40bd-96a3-0e99b8f60b25"
+ "9f84c1e5-bf8d-49cb-b8bd-7dff89e0e2f4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223611Z:a56c9ccc-dcad-40bd-96a3-0e99b8f60b25"
+ "NORTHCENTRALUS:20200514T212722Z:9f84c1e5-bf8d-49cb-b8bd-7dff89e0e2f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24765,7 +13803,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:10 GMT"
+ "Thu, 14 May 2020 21:27:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24774,20 +13812,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78a4d5d2-3cfc-42ca-a3e2-2f52e9df4afd"
+ "e1ba0b74-a530-4f36-aeab-14dc2954c3ec"
],
"Accept-Language": [
"en-US"
@@ -24810,16 +13848,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11668"
+ "11841"
],
"x-ms-request-id": [
- "068ad2c4-c653-4851-afb8-9b3066641b9d"
+ "ca4cd379-f685-476e-953b-24a495ac6038"
],
"x-ms-correlation-request-id": [
- "068ad2c4-c653-4851-afb8-9b3066641b9d"
+ "ca4cd379-f685-476e-953b-24a495ac6038"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223612Z:068ad2c4-c653-4851-afb8-9b3066641b9d"
+ "NORTHCENTRALUS:20200514T212723Z:ca4cd379-f685-476e-953b-24a495ac6038"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24828,7 +13866,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:11 GMT"
+ "Thu, 14 May 2020 21:27:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24837,20 +13875,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b698f21-345d-4863-86d3-44303c651fce"
+ "925c9c66-7955-45f2-8cec-4610e4fe5e28"
],
"Accept-Language": [
"en-US"
@@ -24873,16 +13911,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11666"
+ "11839"
],
"x-ms-request-id": [
- "780d1995-bdeb-4beb-a86b-0b71f6b9984f"
+ "fac7d51c-e4ac-4f53-9475-17c87ca5bb84"
],
"x-ms-correlation-request-id": [
- "780d1995-bdeb-4beb-a86b-0b71f6b9984f"
+ "fac7d51c-e4ac-4f53-9475-17c87ca5bb84"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223612Z:780d1995-bdeb-4beb-a86b-0b71f6b9984f"
+ "NORTHCENTRALUS:20200514T212723Z:fac7d51c-e4ac-4f53-9475-17c87ca5bb84"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24891,7 +13929,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:11 GMT"
+ "Thu, 14 May 2020 21:27:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24900,20 +13938,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e4a111f-a1db-468b-84f4-b7d3aeadcf44"
+ "0cd3a16a-a491-4af8-b8f7-cb1f4a827869"
],
"Accept-Language": [
"en-US"
@@ -24936,16 +13974,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11664"
+ "11837"
],
"x-ms-request-id": [
- "058c1374-7b65-43c4-bc69-e4eb86fee411"
+ "e7cbfeb1-84b6-479a-bab6-dc2ed910189e"
],
"x-ms-correlation-request-id": [
- "058c1374-7b65-43c4-bc69-e4eb86fee411"
+ "e7cbfeb1-84b6-479a-bab6-dc2ed910189e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223612Z:058c1374-7b65-43c4-bc69-e4eb86fee411"
+ "NORTHCENTRALUS:20200514T212724Z:e7cbfeb1-84b6-479a-bab6-dc2ed910189e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -24954,7 +13992,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:12 GMT"
+ "Thu, 14 May 2020 21:27:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -24963,20 +14001,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f80bf932-31f5-46e1-8468-d23ef8877ef4"
+ "a2f0130b-1f76-4e79-bcf9-c12216ff809a"
],
"Accept-Language": [
"en-US"
@@ -24999,16 +14037,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11662"
+ "11835"
],
"x-ms-request-id": [
- "fb93b596-0d8f-4efe-83ec-752430306e39"
+ "e1f347ca-7488-4b09-bab3-ad0edce4109b"
],
"x-ms-correlation-request-id": [
- "fb93b596-0d8f-4efe-83ec-752430306e39"
+ "e1f347ca-7488-4b09-bab3-ad0edce4109b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223613Z:fb93b596-0d8f-4efe-83ec-752430306e39"
+ "NORTHCENTRALUS:20200514T212724Z:e1f347ca-7488-4b09-bab3-ad0edce4109b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25017,7 +14055,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:12 GMT"
+ "Thu, 14 May 2020 21:27:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25026,20 +14064,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5a3e36c-3350-4675-b478-8113958aa25d"
+ "71ccfff9-b0ae-4898-8291-10a87f37a646"
],
"Accept-Language": [
"en-US"
@@ -25062,16 +14100,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11660"
+ "11833"
],
"x-ms-request-id": [
- "df098758-f27c-44ba-a239-e84b832f0186"
+ "7c9b9d3c-bbc3-46a3-8f3e-6197d4b2b368"
],
"x-ms-correlation-request-id": [
- "df098758-f27c-44ba-a239-e84b832f0186"
+ "7c9b9d3c-bbc3-46a3-8f3e-6197d4b2b368"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223613Z:df098758-f27c-44ba-a239-e84b832f0186"
+ "NORTHCENTRALUS:20200514T212725Z:7c9b9d3c-bbc3-46a3-8f3e-6197d4b2b368"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25080,7 +14118,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:12 GMT"
+ "Thu, 14 May 2020 21:27:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25089,20 +14127,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "acc8ff35-420c-4861-a160-0a0f18c03823"
+ "376bc5d0-c467-4d4a-8728-bf50ea654028"
],
"Accept-Language": [
"en-US"
@@ -25125,16 +14163,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11658"
+ "11831"
],
"x-ms-request-id": [
- "4981e275-216f-4269-a59a-4ce1ce2acf35"
+ "060598ca-661e-42eb-a2ab-e8a3d417453a"
],
"x-ms-correlation-request-id": [
- "4981e275-216f-4269-a59a-4ce1ce2acf35"
+ "060598ca-661e-42eb-a2ab-e8a3d417453a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223614Z:4981e275-216f-4269-a59a-4ce1ce2acf35"
+ "NORTHCENTRALUS:20200514T212725Z:060598ca-661e-42eb-a2ab-e8a3d417453a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25143,7 +14181,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:13 GMT"
+ "Thu, 14 May 2020 21:27:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25152,20 +14190,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3258f8d1-8492-4e35-84cc-fa461f5777da"
+ "4190534c-2c96-4d7d-9074-d84198e2e46c"
],
"Accept-Language": [
"en-US"
@@ -25188,16 +14226,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11656"
+ "11829"
],
"x-ms-request-id": [
- "89affd70-c1ff-423b-8604-912dbe272a62"
+ "275205dd-ffd9-4e7d-bd04-89154784b547"
],
"x-ms-correlation-request-id": [
- "89affd70-c1ff-423b-8604-912dbe272a62"
+ "275205dd-ffd9-4e7d-bd04-89154784b547"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223614Z:89affd70-c1ff-423b-8604-912dbe272a62"
+ "NORTHCENTRALUS:20200514T212725Z:275205dd-ffd9-4e7d-bd04-89154784b547"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25206,7 +14244,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:13 GMT"
+ "Thu, 14 May 2020 21:27:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25215,20 +14253,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a4762c7-a708-4e85-9af9-05fad580e03c"
+ "44ef3cac-35b8-4638-9a21-7d3a547298cb"
],
"Accept-Language": [
"en-US"
@@ -25251,16 +14289,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11654"
+ "11827"
],
"x-ms-request-id": [
- "2628b51e-182f-4981-accb-973e7d36faa6"
+ "2c06529e-f51e-4a20-abb8-37908e71363c"
],
"x-ms-correlation-request-id": [
- "2628b51e-182f-4981-accb-973e7d36faa6"
+ "2c06529e-f51e-4a20-abb8-37908e71363c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223615Z:2628b51e-182f-4981-accb-973e7d36faa6"
+ "NORTHCENTRALUS:20200514T212726Z:2c06529e-f51e-4a20-abb8-37908e71363c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25269,7 +14307,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:14 GMT"
+ "Thu, 14 May 2020 21:27:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25278,20 +14316,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c977e24d-30d0-4462-98e9-aa8f562450bd"
+ "47645fe8-2989-446c-a8b8-dc71330fd60e"
],
"Accept-Language": [
"en-US"
@@ -25314,16 +14352,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11652"
+ "11825"
],
"x-ms-request-id": [
- "996d2725-78e8-4bf9-a53b-135571c3f218"
+ "881c04d2-37db-49c4-a118-ab9d0cd70bd5"
],
"x-ms-correlation-request-id": [
- "996d2725-78e8-4bf9-a53b-135571c3f218"
+ "881c04d2-37db-49c4-a118-ab9d0cd70bd5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223615Z:996d2725-78e8-4bf9-a53b-135571c3f218"
+ "NORTHCENTRALUS:20200514T212726Z:881c04d2-37db-49c4-a118-ab9d0cd70bd5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25332,7 +14370,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:14 GMT"
+ "Thu, 14 May 2020 21:27:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25341,20 +14379,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c00e583-7d1a-4846-ba1a-9890a230477a"
+ "e094fbe3-1dcd-4141-9848-c276c2ee5fde"
],
"Accept-Language": [
"en-US"
@@ -25377,16 +14415,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11650"
+ "11823"
],
"x-ms-request-id": [
- "99b829f5-e10b-4e70-88c6-3915b7153865"
+ "f05c0ae6-712e-4297-b532-826d498405fd"
],
"x-ms-correlation-request-id": [
- "99b829f5-e10b-4e70-88c6-3915b7153865"
+ "f05c0ae6-712e-4297-b532-826d498405fd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223615Z:99b829f5-e10b-4e70-88c6-3915b7153865"
+ "NORTHCENTRALUS:20200514T212727Z:f05c0ae6-712e-4297-b532-826d498405fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25395,7 +14433,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:14 GMT"
+ "Thu, 14 May 2020 21:27:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25404,20 +14442,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "180dfe4f-698d-4412-8ba5-2d7eec22c07d"
+ "d1ef69b4-e704-4519-85d9-954dc6a25edf"
],
"Accept-Language": [
"en-US"
@@ -25440,16 +14478,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11648"
+ "11821"
],
"x-ms-request-id": [
- "8f5ce0a7-da0d-4f23-bdbb-075343d12419"
+ "7a6fe433-1c55-41a9-9869-844df8b190ad"
],
"x-ms-correlation-request-id": [
- "8f5ce0a7-da0d-4f23-bdbb-075343d12419"
+ "7a6fe433-1c55-41a9-9869-844df8b190ad"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223616Z:8f5ce0a7-da0d-4f23-bdbb-075343d12419"
+ "NORTHCENTRALUS:20200514T212727Z:7a6fe433-1c55-41a9-9869-844df8b190ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25458,7 +14496,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:15 GMT"
+ "Thu, 14 May 2020 21:27:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25467,20 +14505,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35175ff7-7679-4371-bac0-ad376be1cf47"
+ "3e844c86-92df-4c2c-8686-c54f3e82194a"
],
"Accept-Language": [
"en-US"
@@ -25503,16 +14541,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11646"
+ "11819"
],
"x-ms-request-id": [
- "17716383-2b5b-4f94-b6a9-b690e7479b1a"
+ "ada9634f-c33a-4dbe-828c-53595d5d1aef"
],
"x-ms-correlation-request-id": [
- "17716383-2b5b-4f94-b6a9-b690e7479b1a"
+ "ada9634f-c33a-4dbe-828c-53595d5d1aef"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223616Z:17716383-2b5b-4f94-b6a9-b690e7479b1a"
+ "NORTHCENTRALUS:20200514T212728Z:ada9634f-c33a-4dbe-828c-53595d5d1aef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25521,7 +14559,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:15 GMT"
+ "Thu, 14 May 2020 21:27:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25530,20 +14568,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec5992a1-9ed3-47b5-b6bb-45601c736e6f"
+ "fbcd2ce7-eb1e-46c6-a11a-7ce2c6490bd9"
],
"Accept-Language": [
"en-US"
@@ -25566,16 +14604,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11644"
+ "11817"
],
"x-ms-request-id": [
- "87d3c6da-0cbe-4a57-a8f5-e3f3a9de71bc"
+ "6f1747b2-5160-43ae-b709-150d67a060c4"
],
"x-ms-correlation-request-id": [
- "87d3c6da-0cbe-4a57-a8f5-e3f3a9de71bc"
+ "6f1747b2-5160-43ae-b709-150d67a060c4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223617Z:87d3c6da-0cbe-4a57-a8f5-e3f3a9de71bc"
+ "NORTHCENTRALUS:20200514T212728Z:6f1747b2-5160-43ae-b709-150d67a060c4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25584,7 +14622,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:16 GMT"
+ "Thu, 14 May 2020 21:27:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25593,20 +14631,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:21.0488662Z\",\r\n \"duration\": \"PT31.9327471S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "88e66509-0aa0-4e82-ae26-8c40ca56dc06"
+ "afbc4276-9fff-4126-8b13-56b467f670b9"
],
"Accept-Language": [
"en-US"
@@ -25629,16 +14667,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11642"
+ "11815"
],
"x-ms-request-id": [
- "52d27e96-64ce-4a19-90f3-42182e9ed2d4"
+ "e39f2c00-fce2-4843-948b-061f7fbefe5b"
],
"x-ms-correlation-request-id": [
- "52d27e96-64ce-4a19-90f3-42182e9ed2d4"
+ "e39f2c00-fce2-4843-948b-061f7fbefe5b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223617Z:52d27e96-64ce-4a19-90f3-42182e9ed2d4"
+ "NORTHCENTRALUS:20200514T212729Z:e39f2c00-fce2-4843-948b-061f7fbefe5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25647,7 +14685,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:16 GMT"
+ "Thu, 14 May 2020 21:27:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25656,20 +14694,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93e981e9-5ce4-4527-89e3-a809f990636d"
+ "77c84d53-5716-4571-b70e-23c11080fe72"
],
"Accept-Language": [
"en-US"
@@ -25692,16 +14730,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11640"
+ "11813"
],
"x-ms-request-id": [
- "556a5561-5a8b-40d3-8ade-c80b185a5ed3"
+ "565678df-1900-4665-9d41-47a6898282c2"
],
"x-ms-correlation-request-id": [
- "556a5561-5a8b-40d3-8ade-c80b185a5ed3"
+ "565678df-1900-4665-9d41-47a6898282c2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223617Z:556a5561-5a8b-40d3-8ade-c80b185a5ed3"
+ "NORTHCENTRALUS:20200514T212729Z:565678df-1900-4665-9d41-47a6898282c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25710,7 +14748,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:17 GMT"
+ "Thu, 14 May 2020 21:27:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25719,20 +14757,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c94c7ffe-8bf6-4e29-b207-24cfc834c7fb"
+ "5f0cddad-bfc2-4c57-9dac-ed79c1580d14"
],
"Accept-Language": [
"en-US"
@@ -25755,16 +14793,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11638"
+ "11811"
],
"x-ms-request-id": [
- "0c558a04-0ea9-43cf-a5e8-2947381a3ad8"
+ "9d70a0d1-e884-4dc2-859e-fbc9ed0fdd28"
],
"x-ms-correlation-request-id": [
- "0c558a04-0ea9-43cf-a5e8-2947381a3ad8"
+ "9d70a0d1-e884-4dc2-859e-fbc9ed0fdd28"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223618Z:0c558a04-0ea9-43cf-a5e8-2947381a3ad8"
+ "NORTHCENTRALUS:20200514T212729Z:9d70a0d1-e884-4dc2-859e-fbc9ed0fdd28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25773,7 +14811,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:17 GMT"
+ "Thu, 14 May 2020 21:27:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25782,20 +14820,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc7ec070-0c7c-45e8-8a46-1f60f5154b73"
+ "bd6d3031-a6e1-4d35-ad24-7c11a3a0f438"
],
"Accept-Language": [
"en-US"
@@ -25818,16 +14856,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11636"
+ "11809"
],
"x-ms-request-id": [
- "b9b16d86-231f-490b-94fd-1940f13bfdc8"
+ "aafeb862-d708-47de-b0a1-c3e771c11215"
],
"x-ms-correlation-request-id": [
- "b9b16d86-231f-490b-94fd-1940f13bfdc8"
+ "aafeb862-d708-47de-b0a1-c3e771c11215"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223618Z:b9b16d86-231f-490b-94fd-1940f13bfdc8"
+ "NORTHCENTRALUS:20200514T212730Z:aafeb862-d708-47de-b0a1-c3e771c11215"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25836,7 +14874,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:17 GMT"
+ "Thu, 14 May 2020 21:27:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25845,20 +14883,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2db0a470-6a42-44da-a5cf-ace745a0b655"
+ "9d63c8bb-f09e-46ad-ac08-c03db6e236b4"
],
"Accept-Language": [
"en-US"
@@ -25881,16 +14919,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11634"
+ "11807"
],
"x-ms-request-id": [
- "179dd241-0d71-4ba7-af3e-91210cdbc0c5"
+ "65d43ec0-bdfe-4042-8dd2-12aa95410489"
],
"x-ms-correlation-request-id": [
- "179dd241-0d71-4ba7-af3e-91210cdbc0c5"
+ "65d43ec0-bdfe-4042-8dd2-12aa95410489"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223619Z:179dd241-0d71-4ba7-af3e-91210cdbc0c5"
+ "NORTHCENTRALUS:20200514T212730Z:65d43ec0-bdfe-4042-8dd2-12aa95410489"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25899,7 +14937,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:18 GMT"
+ "Thu, 14 May 2020 21:27:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25908,20 +14946,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f3aca92a-bbda-4f86-9974-cf77829555e5"
+ "3d7f0ff4-a0de-42fb-9cb3-be799aa34218"
],
"Accept-Language": [
"en-US"
@@ -25944,16 +14982,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11632"
+ "11805"
],
"x-ms-request-id": [
- "2b7826de-1833-4aec-9303-56348da483f7"
+ "6fa3522b-a212-4c1c-99fa-6c190f077671"
],
"x-ms-correlation-request-id": [
- "2b7826de-1833-4aec-9303-56348da483f7"
+ "6fa3522b-a212-4c1c-99fa-6c190f077671"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223619Z:2b7826de-1833-4aec-9303-56348da483f7"
+ "NORTHCENTRALUS:20200514T212731Z:6fa3522b-a212-4c1c-99fa-6c190f077671"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -25962,7 +15000,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:18 GMT"
+ "Thu, 14 May 2020 21:27:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -25971,20 +15009,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b554dd1-1634-4044-8548-350ca5560252"
+ "59748cdf-a724-4965-83af-eb9af7931b5c"
],
"Accept-Language": [
"en-US"
@@ -26007,16 +15045,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11630"
+ "11803"
],
"x-ms-request-id": [
- "d280dbfc-f2aa-4e60-b343-d874f035d1b0"
+ "6b27f556-3726-4911-a1fb-40dfb33f2770"
],
"x-ms-correlation-request-id": [
- "d280dbfc-f2aa-4e60-b343-d874f035d1b0"
+ "6b27f556-3726-4911-a1fb-40dfb33f2770"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223620Z:d280dbfc-f2aa-4e60-b343-d874f035d1b0"
+ "NORTHCENTRALUS:20200514T212731Z:6b27f556-3726-4911-a1fb-40dfb33f2770"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26025,7 +15063,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:19 GMT"
+ "Thu, 14 May 2020 21:27:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26034,20 +15072,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99c6b371-63e2-4ac2-877d-b0724c88a216"
+ "239696cb-394a-4eca-84f8-6a49b75b37a2"
],
"Accept-Language": [
"en-US"
@@ -26070,16 +15108,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11628"
+ "11801"
],
"x-ms-request-id": [
- "846f71f3-ff82-40b7-8dfa-518796cdfb8a"
+ "1bfc0973-b137-4408-9a23-21e71196a699"
],
"x-ms-correlation-request-id": [
- "846f71f3-ff82-40b7-8dfa-518796cdfb8a"
+ "1bfc0973-b137-4408-9a23-21e71196a699"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223620Z:846f71f3-ff82-40b7-8dfa-518796cdfb8a"
+ "NORTHCENTRALUS:20200514T212732Z:1bfc0973-b137-4408-9a23-21e71196a699"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26088,7 +15126,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:19 GMT"
+ "Thu, 14 May 2020 21:27:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26097,20 +15135,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8738ce69-66c6-4a39-b400-4d7a0b806338"
+ "f6aac863-6a3a-4122-8842-e1df354faaf5"
],
"Accept-Language": [
"en-US"
@@ -26133,16 +15171,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11626"
+ "11799"
],
"x-ms-request-id": [
- "a0213517-be22-468a-8811-485d0bebb9d4"
+ "18f065e0-7b60-446b-8df7-c153829ce7fa"
],
"x-ms-correlation-request-id": [
- "a0213517-be22-468a-8811-485d0bebb9d4"
+ "18f065e0-7b60-446b-8df7-c153829ce7fa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223620Z:a0213517-be22-468a-8811-485d0bebb9d4"
+ "NORTHCENTRALUS:20200514T212732Z:18f065e0-7b60-446b-8df7-c153829ce7fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26151,7 +15189,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:20 GMT"
+ "Thu, 14 May 2020 21:27:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26160,20 +15198,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1df402b-0d27-4654-8116-7a61f99415f5"
+ "6a5487ef-9229-41a4-af11-352e9e7235ca"
],
"Accept-Language": [
"en-US"
@@ -26196,16 +15234,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11624"
+ "11797"
],
"x-ms-request-id": [
- "61da6cb6-0485-4dc8-8678-fed968d4685f"
+ "037af7b4-1007-4dfd-95f5-33f284bae307"
],
"x-ms-correlation-request-id": [
- "61da6cb6-0485-4dc8-8678-fed968d4685f"
+ "037af7b4-1007-4dfd-95f5-33f284bae307"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223621Z:61da6cb6-0485-4dc8-8678-fed968d4685f"
+ "NORTHCENTRALUS:20200514T212733Z:037af7b4-1007-4dfd-95f5-33f284bae307"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26214,7 +15252,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:20 GMT"
+ "Thu, 14 May 2020 21:27:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26223,20 +15261,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10b4bed6-9718-442c-a909-aa910a6247db"
+ "5f062840-bcae-4923-acfe-1eeb53d3b5d7"
],
"Accept-Language": [
"en-US"
@@ -26259,16 +15297,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11622"
+ "11795"
],
"x-ms-request-id": [
- "b6529189-f750-41d2-b0d6-39d751cb490b"
+ "53cdafdc-0792-49d1-8719-5b74f7aa5670"
],
"x-ms-correlation-request-id": [
- "b6529189-f750-41d2-b0d6-39d751cb490b"
+ "53cdafdc-0792-49d1-8719-5b74f7aa5670"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223621Z:b6529189-f750-41d2-b0d6-39d751cb490b"
+ "NORTHCENTRALUS:20200514T212733Z:53cdafdc-0792-49d1-8719-5b74f7aa5670"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26277,7 +15315,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:20 GMT"
+ "Thu, 14 May 2020 21:27:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26286,20 +15324,20 @@
"-1"
],
"Content-Length": [
- "1426"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:10.1681997Z\",\r\n \"duration\": \"PT1M9.1230765S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dafc2b11-a74d-4d2f-b828-b590605e96a7"
+ "9c9250e4-e7ca-4fdd-b3a5-ea51d8f8a5a9"
],
"Accept-Language": [
"en-US"
@@ -26322,16 +15360,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11620"
+ "11793"
],
"x-ms-request-id": [
- "36eb6ef4-bcdb-4313-970f-4d53ebf72d26"
+ "91efb4d7-2332-4a52-9399-0925bfbf5f76"
],
"x-ms-correlation-request-id": [
- "36eb6ef4-bcdb-4313-970f-4d53ebf72d26"
+ "91efb4d7-2332-4a52-9399-0925bfbf5f76"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223622Z:36eb6ef4-bcdb-4313-970f-4d53ebf72d26"
+ "NORTHCENTRALUS:20200514T212733Z:91efb4d7-2332-4a52-9399-0925bfbf5f76"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26340,7 +15378,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:21 GMT"
+ "Thu, 14 May 2020 21:27:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26349,20 +15387,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8355ee3-8e7e-4f58-bf1d-5a120ea4301f"
+ "48110dc4-83aa-433f-94c5-1daca233033e"
],
"Accept-Language": [
"en-US"
@@ -26385,16 +15423,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11618"
+ "11791"
],
"x-ms-request-id": [
- "54ebf8bb-c1db-4ed4-81c4-24131e357571"
+ "e6ff76b6-a6e1-4499-a590-0a7cab1cae7a"
],
"x-ms-correlation-request-id": [
- "54ebf8bb-c1db-4ed4-81c4-24131e357571"
+ "e6ff76b6-a6e1-4499-a590-0a7cab1cae7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223622Z:54ebf8bb-c1db-4ed4-81c4-24131e357571"
+ "NORTHCENTRALUS:20200514T212734Z:e6ff76b6-a6e1-4499-a590-0a7cab1cae7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26403,7 +15441,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:21 GMT"
+ "Thu, 14 May 2020 21:27:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26412,20 +15450,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "109bb662-926d-463a-ada4-ff24fa9ea801"
+ "77cb1f34-4058-41b5-8f41-a858e535a21a"
],
"Accept-Language": [
"en-US"
@@ -26448,16 +15486,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11616"
+ "11789"
],
"x-ms-request-id": [
- "a2af2e1e-03a8-4ece-abaa-cb23ed8e08fc"
+ "31d977b0-158d-42fd-aef1-449dde221d08"
],
"x-ms-correlation-request-id": [
- "a2af2e1e-03a8-4ece-abaa-cb23ed8e08fc"
+ "31d977b0-158d-42fd-aef1-449dde221d08"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223623Z:a2af2e1e-03a8-4ece-abaa-cb23ed8e08fc"
+ "NORTHCENTRALUS:20200514T212734Z:31d977b0-158d-42fd-aef1-449dde221d08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26466,7 +15504,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:23 GMT"
+ "Thu, 14 May 2020 21:27:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26475,20 +15513,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f25c5cd9-3b4f-4178-bfe7-15e71303967e"
+ "792ef145-7dab-438b-ba70-33cb9da5c654"
],
"Accept-Language": [
"en-US"
@@ -26511,16 +15549,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11614"
+ "11787"
],
"x-ms-request-id": [
- "69a78222-215c-4c37-9698-429429c6fd02"
+ "824fbb12-759b-4aeb-86e2-38dba44676c8"
],
"x-ms-correlation-request-id": [
- "69a78222-215c-4c37-9698-429429c6fd02"
+ "824fbb12-759b-4aeb-86e2-38dba44676c8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223623Z:69a78222-215c-4c37-9698-429429c6fd02"
+ "NORTHCENTRALUS:20200514T212735Z:824fbb12-759b-4aeb-86e2-38dba44676c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26529,7 +15567,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:23 GMT"
+ "Thu, 14 May 2020 21:27:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26538,20 +15576,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b97f762d-e0f2-4e2d-b9d2-05d07e694c34"
+ "28c4a8f6-cf7d-4998-8532-dc0c0efbc9c4"
],
"Accept-Language": [
"en-US"
@@ -26574,16 +15612,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11612"
+ "11785"
],
"x-ms-request-id": [
- "217aaa46-3bf8-4118-ae3e-4a121ad91a7d"
+ "b6338dcf-685b-47da-87cb-d9fbf7991c25"
],
"x-ms-correlation-request-id": [
- "217aaa46-3bf8-4118-ae3e-4a121ad91a7d"
+ "b6338dcf-685b-47da-87cb-d9fbf7991c25"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223623Z:217aaa46-3bf8-4118-ae3e-4a121ad91a7d"
+ "NORTHCENTRALUS:20200514T212735Z:b6338dcf-685b-47da-87cb-d9fbf7991c25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26592,7 +15630,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:23 GMT"
+ "Thu, 14 May 2020 21:27:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26601,20 +15639,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31b92da7-2a44-4298-a167-42732a4e271d"
+ "f44eb9d2-3087-48e4-9a95-76a3a403d801"
],
"Accept-Language": [
"en-US"
@@ -26637,16 +15675,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11610"
+ "11783"
],
"x-ms-request-id": [
- "3612bb23-bfad-45a4-a1da-1aa32722ea6e"
+ "f710c08d-cd1e-4f4e-9f49-007b993b5f18"
],
"x-ms-correlation-request-id": [
- "3612bb23-bfad-45a4-a1da-1aa32722ea6e"
+ "f710c08d-cd1e-4f4e-9f49-007b993b5f18"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223624Z:3612bb23-bfad-45a4-a1da-1aa32722ea6e"
+ "NORTHCENTRALUS:20200514T212736Z:f710c08d-cd1e-4f4e-9f49-007b993b5f18"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26655,7 +15693,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:24 GMT"
+ "Thu, 14 May 2020 21:27:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26664,20 +15702,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "976cb72a-6503-4225-9e40-412c844397d7"
+ "51527eec-a856-407b-8332-cc6378ae0616"
],
"Accept-Language": [
"en-US"
@@ -26700,16 +15738,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11608"
+ "11781"
],
"x-ms-request-id": [
- "97b36211-0003-42d3-96ef-d4729fc8d3bd"
+ "eacb7e30-9c72-4a95-a906-d6219d327cc5"
],
"x-ms-correlation-request-id": [
- "97b36211-0003-42d3-96ef-d4729fc8d3bd"
+ "eacb7e30-9c72-4a95-a906-d6219d327cc5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223624Z:97b36211-0003-42d3-96ef-d4729fc8d3bd"
+ "NORTHCENTRALUS:20200514T212736Z:eacb7e30-9c72-4a95-a906-d6219d327cc5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26718,7 +15756,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:24 GMT"
+ "Thu, 14 May 2020 21:27:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26727,20 +15765,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "864d3e51-7100-4da5-a9d7-77b4882e165e"
+ "76e82ce9-c055-4000-8b6d-c9d6c2b6406f"
],
"Accept-Language": [
"en-US"
@@ -26763,16 +15801,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11606"
+ "11779"
],
"x-ms-request-id": [
- "e293e4bd-871c-4b5b-9cf6-a45a5bb06bfe"
+ "e358dc90-05fe-4696-a3ca-c9bf6c7a5396"
],
"x-ms-correlation-request-id": [
- "e293e4bd-871c-4b5b-9cf6-a45a5bb06bfe"
+ "e358dc90-05fe-4696-a3ca-c9bf6c7a5396"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223625Z:e293e4bd-871c-4b5b-9cf6-a45a5bb06bfe"
+ "NORTHCENTRALUS:20200514T212736Z:e358dc90-05fe-4696-a3ca-c9bf6c7a5396"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26781,7 +15819,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:25 GMT"
+ "Thu, 14 May 2020 21:27:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26790,20 +15828,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:28.7727116Z\",\r\n \"duration\": \"PT39.6565925S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b003bb74-abe0-4a70-94d7-6db42eac4e64"
+ "6e2c83ea-3bd5-4443-aedc-335761137e08"
],
"Accept-Language": [
"en-US"
@@ -26826,16 +15864,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11604"
+ "11777"
],
"x-ms-request-id": [
- "0b0c647b-ea65-41c3-a7f2-62c0e49c8cd6"
+ "c7f00f9a-16ff-470a-8db7-5c38dba9e972"
],
"x-ms-correlation-request-id": [
- "0b0c647b-ea65-41c3-a7f2-62c0e49c8cd6"
+ "c7f00f9a-16ff-470a-8db7-5c38dba9e972"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223625Z:0b0c647b-ea65-41c3-a7f2-62c0e49c8cd6"
+ "NORTHCENTRALUS:20200514T212737Z:c7f00f9a-16ff-470a-8db7-5c38dba9e972"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26844,7 +15882,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:25 GMT"
+ "Thu, 14 May 2020 21:27:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26853,20 +15891,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "85ec7f95-b001-4e74-becd-a98e37cde9f6"
+ "ef0921bf-5941-496d-8203-832755ccce72"
],
"Accept-Language": [
"en-US"
@@ -26889,16 +15927,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11602"
+ "11775"
],
"x-ms-request-id": [
- "7a0b733d-0441-4cb4-98e3-7bca2c1afec8"
+ "2cf7567c-ad20-4968-b51b-84800a4f9f57"
],
"x-ms-correlation-request-id": [
- "7a0b733d-0441-4cb4-98e3-7bca2c1afec8"
+ "2cf7567c-ad20-4968-b51b-84800a4f9f57"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223625Z:7a0b733d-0441-4cb4-98e3-7bca2c1afec8"
+ "NORTHCENTRALUS:20200514T212737Z:2cf7567c-ad20-4968-b51b-84800a4f9f57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26907,7 +15945,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:25 GMT"
+ "Thu, 14 May 2020 21:27:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26916,20 +15954,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ee68c08-69a9-4592-b928-703a32975da7"
+ "25037acd-b240-4d76-94ff-16895698ca51"
],
"Accept-Language": [
"en-US"
@@ -26952,16 +15990,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11600"
+ "11773"
],
"x-ms-request-id": [
- "8815409f-2846-47d5-8e05-9e1d79fb2a42"
+ "908ba8d2-d847-4014-bf8b-b2d98d26074b"
],
"x-ms-correlation-request-id": [
- "8815409f-2846-47d5-8e05-9e1d79fb2a42"
+ "908ba8d2-d847-4014-bf8b-b2d98d26074b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223626Z:8815409f-2846-47d5-8e05-9e1d79fb2a42"
+ "NORTHCENTRALUS:20200514T212738Z:908ba8d2-d847-4014-bf8b-b2d98d26074b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -26970,7 +16008,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:26 GMT"
+ "Thu, 14 May 2020 21:27:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -26979,20 +16017,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "988f1db5-84d6-4e9b-b4f2-11c2469eb060"
+ "1383e2dd-22e2-49cf-840a-f8f9e7658279"
],
"Accept-Language": [
"en-US"
@@ -27015,16 +16053,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11598"
+ "11771"
],
"x-ms-request-id": [
- "9056dee7-7a94-4a25-b10c-8149c1a9fb95"
+ "22b8649f-5a80-4dd7-a2d7-7f851ca53bb9"
],
"x-ms-correlation-request-id": [
- "9056dee7-7a94-4a25-b10c-8149c1a9fb95"
+ "22b8649f-5a80-4dd7-a2d7-7f851ca53bb9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223626Z:9056dee7-7a94-4a25-b10c-8149c1a9fb95"
+ "NORTHCENTRALUS:20200514T212738Z:22b8649f-5a80-4dd7-a2d7-7f851ca53bb9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27033,7 +16071,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:26 GMT"
+ "Thu, 14 May 2020 21:27:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27042,20 +16080,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c4aa8988-e476-4b28-93d7-6dfc058ef3ff"
+ "e0efadf5-ac2f-4006-a7c6-4694cc5636b4"
],
"Accept-Language": [
"en-US"
@@ -27078,16 +16116,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11596"
+ "11769"
],
"x-ms-request-id": [
- "2e6f6671-111c-434f-935e-2d18358f90ce"
+ "2d81d003-27f7-4cdb-bcd6-edb5b2b77566"
],
"x-ms-correlation-request-id": [
- "2e6f6671-111c-434f-935e-2d18358f90ce"
+ "2d81d003-27f7-4cdb-bcd6-edb5b2b77566"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223627Z:2e6f6671-111c-434f-935e-2d18358f90ce"
+ "NORTHCENTRALUS:20200514T212739Z:2d81d003-27f7-4cdb-bcd6-edb5b2b77566"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27096,7 +16134,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:27 GMT"
+ "Thu, 14 May 2020 21:27:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27105,20 +16143,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b87a3572-fb00-40eb-b167-b43b19ed7a64"
+ "f3470bc8-4fcb-430c-8ee8-a5005b3b6540"
],
"Accept-Language": [
"en-US"
@@ -27141,16 +16179,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11594"
+ "11767"
],
"x-ms-request-id": [
- "fb80d12b-6089-42af-a2bd-610c973e2372"
+ "63890ff8-7ca7-468b-be2c-de175b093c35"
],
"x-ms-correlation-request-id": [
- "fb80d12b-6089-42af-a2bd-610c973e2372"
+ "63890ff8-7ca7-468b-be2c-de175b093c35"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223627Z:fb80d12b-6089-42af-a2bd-610c973e2372"
+ "NORTHCENTRALUS:20200514T212739Z:63890ff8-7ca7-468b-be2c-de175b093c35"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27159,7 +16197,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:27 GMT"
+ "Thu, 14 May 2020 21:27:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27168,20 +16206,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d19e533-79a0-4465-9280-3e8fa6736831"
+ "b1f4bf22-0ef2-43a6-a499-c03a5b3f8efd"
],
"Accept-Language": [
"en-US"
@@ -27204,16 +16242,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11592"
+ "11765"
],
"x-ms-request-id": [
- "4b50311b-87d2-45e8-b924-049c22e1d68c"
+ "0fe59bb0-c0ff-4ea7-a8f7-55fe00823f05"
],
"x-ms-correlation-request-id": [
- "4b50311b-87d2-45e8-b924-049c22e1d68c"
+ "0fe59bb0-c0ff-4ea7-a8f7-55fe00823f05"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223628Z:4b50311b-87d2-45e8-b924-049c22e1d68c"
+ "NORTHCENTRALUS:20200514T212739Z:0fe59bb0-c0ff-4ea7-a8f7-55fe00823f05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27222,7 +16260,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:28 GMT"
+ "Thu, 14 May 2020 21:27:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27231,20 +16269,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2953c598-0dc8-4d25-a33a-2cbe9393f6be"
+ "571b9f6f-fc9d-4b5a-b951-20f7bba92a44"
],
"Accept-Language": [
"en-US"
@@ -27267,16 +16305,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11590"
+ "11763"
],
"x-ms-request-id": [
- "47bf72fc-e7e7-4e45-ad66-0712d22ad482"
+ "c48a4c4a-6c66-4ae1-8aa9-79b2256c1681"
],
"x-ms-correlation-request-id": [
- "47bf72fc-e7e7-4e45-ad66-0712d22ad482"
+ "c48a4c4a-6c66-4ae1-8aa9-79b2256c1681"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223628Z:47bf72fc-e7e7-4e45-ad66-0712d22ad482"
+ "NORTHCENTRALUS:20200514T212740Z:c48a4c4a-6c66-4ae1-8aa9-79b2256c1681"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27285,7 +16323,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:28 GMT"
+ "Thu, 14 May 2020 21:27:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27294,20 +16332,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a736069-bb8b-4862-bbe1-adc2cd78e8da"
+ "862e5346-0c89-452a-a8ea-132441fe5598"
],
"Accept-Language": [
"en-US"
@@ -27330,16 +16368,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11588"
+ "11761"
],
"x-ms-request-id": [
- "70fa40f1-018e-467e-b934-b129af2bf994"
+ "99074021-2caa-4917-868b-5a6f4c7b4df9"
],
"x-ms-correlation-request-id": [
- "70fa40f1-018e-467e-b934-b129af2bf994"
+ "99074021-2caa-4917-868b-5a6f4c7b4df9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223628Z:70fa40f1-018e-467e-b934-b129af2bf994"
+ "NORTHCENTRALUS:20200514T212740Z:99074021-2caa-4917-868b-5a6f4c7b4df9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27348,7 +16386,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:28 GMT"
+ "Thu, 14 May 2020 21:27:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27357,20 +16395,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93824945-81c1-4f6b-ab90-debbe9a16374"
+ "8b05bc82-c824-4e1f-b12f-76a6a2ceab54"
],
"Accept-Language": [
"en-US"
@@ -27393,16 +16431,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11586"
+ "11759"
],
"x-ms-request-id": [
- "721b0b3c-413e-4ff7-bf11-a9a649c24533"
+ "4a4a62f4-4f25-40f0-8fbf-cdd007a560a5"
],
"x-ms-correlation-request-id": [
- "721b0b3c-413e-4ff7-bf11-a9a649c24533"
+ "4a4a62f4-4f25-40f0-8fbf-cdd007a560a5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223629Z:721b0b3c-413e-4ff7-bf11-a9a649c24533"
+ "NORTHCENTRALUS:20200514T212741Z:4a4a62f4-4f25-40f0-8fbf-cdd007a560a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27411,7 +16449,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:29 GMT"
+ "Thu, 14 May 2020 21:27:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27420,20 +16458,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e557b3b4-d3d6-423c-85fe-31fe180533f2"
+ "8c1be5c6-6f15-4983-8b27-9a50167bbbb4"
],
"Accept-Language": [
"en-US"
@@ -27456,16 +16494,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11584"
+ "11757"
],
"x-ms-request-id": [
- "fd8cfa81-ccd0-44f3-90f7-c29aa574dbe2"
+ "831385b5-adef-4b91-a09c-b2092bb837d5"
],
"x-ms-correlation-request-id": [
- "fd8cfa81-ccd0-44f3-90f7-c29aa574dbe2"
+ "831385b5-adef-4b91-a09c-b2092bb837d5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223629Z:fd8cfa81-ccd0-44f3-90f7-c29aa574dbe2"
+ "NORTHCENTRALUS:20200514T212741Z:831385b5-adef-4b91-a09c-b2092bb837d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27474,7 +16512,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:29 GMT"
+ "Thu, 14 May 2020 21:27:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27483,20 +16521,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9795e5f4-66d4-4194-9cf7-600721635f50"
+ "6063d70c-e539-469d-aaaf-6fb2621dc1b4"
],
"Accept-Language": [
"en-US"
@@ -27519,16 +16557,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11582"
+ "11755"
],
"x-ms-request-id": [
- "8d9bdfde-60de-4fa6-8241-a8ccb965aa69"
+ "8093c844-18e4-453e-afd0-51702c917379"
],
"x-ms-correlation-request-id": [
- "8d9bdfde-60de-4fa6-8241-a8ccb965aa69"
+ "8093c844-18e4-453e-afd0-51702c917379"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223630Z:8d9bdfde-60de-4fa6-8241-a8ccb965aa69"
+ "NORTHCENTRALUS:20200514T212742Z:8093c844-18e4-453e-afd0-51702c917379"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27537,7 +16575,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:30 GMT"
+ "Thu, 14 May 2020 21:27:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27546,20 +16584,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ecca164-9702-4b90-a497-ede09ee1102c"
+ "8a20df4b-1282-40df-9965-6c88465297ec"
],
"Accept-Language": [
"en-US"
@@ -27582,16 +16620,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11580"
+ "11753"
],
"x-ms-request-id": [
- "654a6194-1bd1-4780-a612-89f5c19fca7b"
+ "ee0addba-4841-43b9-8be9-93be860bfe84"
],
"x-ms-correlation-request-id": [
- "654a6194-1bd1-4780-a612-89f5c19fca7b"
+ "ee0addba-4841-43b9-8be9-93be860bfe84"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223630Z:654a6194-1bd1-4780-a612-89f5c19fca7b"
+ "NORTHCENTRALUS:20200514T212742Z:ee0addba-4841-43b9-8be9-93be860bfe84"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27600,7 +16638,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:30 GMT"
+ "Thu, 14 May 2020 21:27:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27609,20 +16647,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97060417-5978-4384-9e9c-59391bc59009"
+ "57fcbd38-2690-4fb8-b254-8ba6a87a92cd"
],
"Accept-Language": [
"en-US"
@@ -27645,16 +16683,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11578"
+ "11751"
],
"x-ms-request-id": [
- "870d2b31-2b79-46ac-b826-dda605186e91"
+ "b32cfd47-07af-4793-b51a-9243b15580dd"
],
"x-ms-correlation-request-id": [
- "870d2b31-2b79-46ac-b826-dda605186e91"
+ "b32cfd47-07af-4793-b51a-9243b15580dd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223631Z:870d2b31-2b79-46ac-b826-dda605186e91"
+ "NORTHCENTRALUS:20200514T212743Z:b32cfd47-07af-4793-b51a-9243b15580dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27663,7 +16701,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:30 GMT"
+ "Thu, 14 May 2020 21:27:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27672,20 +16710,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4160765d-1a20-40bf-9c79-cee6c424ea94"
+ "709510c5-2f89-4427-beae-756f6baf7784"
],
"Accept-Language": [
"en-US"
@@ -27708,16 +16746,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11576"
+ "11749"
],
"x-ms-request-id": [
- "66b20d47-f6fc-47e5-a5ca-a09211d9be9c"
+ "3d08b1ec-593b-43c0-9518-5b92769d4e11"
],
"x-ms-correlation-request-id": [
- "66b20d47-f6fc-47e5-a5ca-a09211d9be9c"
+ "3d08b1ec-593b-43c0-9518-5b92769d4e11"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223631Z:66b20d47-f6fc-47e5-a5ca-a09211d9be9c"
+ "NORTHCENTRALUS:20200514T212743Z:3d08b1ec-593b-43c0-9518-5b92769d4e11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27726,7 +16764,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:31 GMT"
+ "Thu, 14 May 2020 21:27:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27735,20 +16773,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3e9ef67-610f-4741-8fc2-4d63078a031c"
+ "a3deeb61-ce16-4468-851a-19e49da3e0dc"
],
"Accept-Language": [
"en-US"
@@ -27771,16 +16809,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11574"
+ "11747"
],
"x-ms-request-id": [
- "3cafa056-a396-4e33-9e05-8b9d9cec75e6"
+ "d989eb0c-0e54-4bd1-940e-63799abb8bcf"
],
"x-ms-correlation-request-id": [
- "3cafa056-a396-4e33-9e05-8b9d9cec75e6"
+ "d989eb0c-0e54-4bd1-940e-63799abb8bcf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223631Z:3cafa056-a396-4e33-9e05-8b9d9cec75e6"
+ "NORTHCENTRALUS:20200514T212743Z:d989eb0c-0e54-4bd1-940e-63799abb8bcf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27789,7 +16827,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:31 GMT"
+ "Thu, 14 May 2020 21:27:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27798,20 +16836,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d24f1cc5-04e2-4f4a-8fdf-a1cc0e0cf3b7"
+ "e58a0e45-2cfc-4411-946d-9e92f877bc0f"
],
"Accept-Language": [
"en-US"
@@ -27834,16 +16872,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11572"
+ "11745"
],
"x-ms-request-id": [
- "91ec57e4-decc-461c-b991-c1e1cdd1fdd8"
+ "30d8114e-ee8e-4202-80a5-5e76d1c16bdb"
],
"x-ms-correlation-request-id": [
- "91ec57e4-decc-461c-b991-c1e1cdd1fdd8"
+ "30d8114e-ee8e-4202-80a5-5e76d1c16bdb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223632Z:91ec57e4-decc-461c-b991-c1e1cdd1fdd8"
+ "NORTHCENTRALUS:20200514T212744Z:30d8114e-ee8e-4202-80a5-5e76d1c16bdb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27852,7 +16890,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:32 GMT"
+ "Thu, 14 May 2020 21:27:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27861,20 +16899,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c43d72f4-535f-4f9c-8559-871b19afdaaf"
+ "6959ed36-c6e4-4020-a05d-5493d1f37f73"
],
"Accept-Language": [
"en-US"
@@ -27897,16 +16935,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11570"
+ "11743"
],
"x-ms-request-id": [
- "4b3787a2-5aca-4ed3-b751-76b15cbe7f78"
+ "f95ab5e6-4585-4b1f-b3ef-0f261c320117"
],
"x-ms-correlation-request-id": [
- "4b3787a2-5aca-4ed3-b751-76b15cbe7f78"
+ "f95ab5e6-4585-4b1f-b3ef-0f261c320117"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223632Z:4b3787a2-5aca-4ed3-b751-76b15cbe7f78"
+ "NORTHCENTRALUS:20200514T212744Z:f95ab5e6-4585-4b1f-b3ef-0f261c320117"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27915,7 +16953,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:32 GMT"
+ "Thu, 14 May 2020 21:27:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27924,20 +16962,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ca52efc-9159-41ee-b210-4971790023e8"
+ "f97cc35e-cbbc-4f55-9cf1-2af3696c6273"
],
"Accept-Language": [
"en-US"
@@ -27960,16 +16998,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11568"
+ "11741"
],
"x-ms-request-id": [
- "102f8abf-54ec-4354-86b5-815467792f39"
+ "0f687c52-b47f-420c-8be9-6c4080849b25"
],
"x-ms-correlation-request-id": [
- "102f8abf-54ec-4354-86b5-815467792f39"
+ "0f687c52-b47f-420c-8be9-6c4080849b25"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223633Z:102f8abf-54ec-4354-86b5-815467792f39"
+ "NORTHCENTRALUS:20200514T212745Z:0f687c52-b47f-420c-8be9-6c4080849b25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -27978,7 +17016,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:32 GMT"
+ "Thu, 14 May 2020 21:27:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -27987,20 +17025,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "28309421-1529-4ac9-878d-e4cef44ae031"
+ "6ac4744f-c87d-403a-9a33-8212a366e55c"
],
"Accept-Language": [
"en-US"
@@ -28023,16 +17061,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11566"
+ "11739"
],
"x-ms-request-id": [
- "7867353a-b1aa-43ff-9c37-773f4277ea0b"
+ "d1da31f0-9d6f-4cad-a756-70de686f6c52"
],
"x-ms-correlation-request-id": [
- "7867353a-b1aa-43ff-9c37-773f4277ea0b"
+ "d1da31f0-9d6f-4cad-a756-70de686f6c52"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223633Z:7867353a-b1aa-43ff-9c37-773f4277ea0b"
+ "NORTHCENTRALUS:20200514T212745Z:d1da31f0-9d6f-4cad-a756-70de686f6c52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28041,7 +17079,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:33 GMT"
+ "Thu, 14 May 2020 21:27:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28050,20 +17088,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40e48797-49b7-41f1-8565-7f76d3780ff6"
+ "3615e87b-9aa6-44c9-a4b8-8f2fe2f09307"
],
"Accept-Language": [
"en-US"
@@ -28086,16 +17124,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11564"
+ "11737"
],
"x-ms-request-id": [
- "fb42737b-974f-4816-b549-4d005e42b7c7"
+ "312a333d-704d-4af5-b10b-ffcf296aeacf"
],
"x-ms-correlation-request-id": [
- "fb42737b-974f-4816-b549-4d005e42b7c7"
+ "312a333d-704d-4af5-b10b-ffcf296aeacf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223634Z:fb42737b-974f-4816-b549-4d005e42b7c7"
+ "NORTHCENTRALUS:20200514T212745Z:312a333d-704d-4af5-b10b-ffcf296aeacf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28104,7 +17142,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:33 GMT"
+ "Thu, 14 May 2020 21:27:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28113,20 +17151,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2fca847a-2f49-444e-8c02-8b2d5fe35cb2"
+ "7e8444b3-1b61-4d63-a391-dc20c1f0748a"
],
"Accept-Language": [
"en-US"
@@ -28149,16 +17187,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11562"
+ "11735"
],
"x-ms-request-id": [
- "fb9bd825-5da5-4561-9deb-3a6ba66bdff4"
+ "32133c0c-b8ea-49fd-a0a6-d72a54fd057b"
],
"x-ms-correlation-request-id": [
- "fb9bd825-5da5-4561-9deb-3a6ba66bdff4"
+ "32133c0c-b8ea-49fd-a0a6-d72a54fd057b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223634Z:fb9bd825-5da5-4561-9deb-3a6ba66bdff4"
+ "NORTHCENTRALUS:20200514T212746Z:32133c0c-b8ea-49fd-a0a6-d72a54fd057b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28167,7 +17205,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:34 GMT"
+ "Thu, 14 May 2020 21:27:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28176,20 +17214,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "393f81e0-e368-4ba2-8fc1-565ad0dab087"
+ "0df517ef-222d-444d-84a2-3585fdd37abe"
],
"Accept-Language": [
"en-US"
@@ -28212,16 +17250,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11560"
+ "11733"
],
"x-ms-request-id": [
- "5cb38d89-3422-49be-ab77-1e075901c100"
+ "2abae5c2-681f-49d9-904a-7d350e0e90bc"
],
"x-ms-correlation-request-id": [
- "5cb38d89-3422-49be-ab77-1e075901c100"
+ "2abae5c2-681f-49d9-904a-7d350e0e90bc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223634Z:5cb38d89-3422-49be-ab77-1e075901c100"
+ "NORTHCENTRALUS:20200514T212746Z:2abae5c2-681f-49d9-904a-7d350e0e90bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28230,7 +17268,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:34 GMT"
+ "Thu, 14 May 2020 21:27:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28239,20 +17277,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9499170-967a-4752-8a19-c569f652b303"
+ "9c8bc049-3e26-4c1a-a4f8-3da3f107bf4f"
],
"Accept-Language": [
"en-US"
@@ -28275,16 +17313,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11558"
+ "11731"
],
"x-ms-request-id": [
- "e012df44-3928-4a68-8cf9-311c5de99cb6"
+ "aa57c37d-52c8-48b6-89ff-36a393413047"
],
"x-ms-correlation-request-id": [
- "e012df44-3928-4a68-8cf9-311c5de99cb6"
+ "aa57c37d-52c8-48b6-89ff-36a393413047"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223635Z:e012df44-3928-4a68-8cf9-311c5de99cb6"
+ "NORTHCENTRALUS:20200514T212747Z:aa57c37d-52c8-48b6-89ff-36a393413047"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28293,7 +17331,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:35 GMT"
+ "Thu, 14 May 2020 21:27:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28302,20 +17340,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1908a028-8aec-4539-8b91-dae7ed0a7a11"
+ "044e57c6-72a8-4b76-9060-e68a8d9f2e0e"
],
"Accept-Language": [
"en-US"
@@ -28338,16 +17376,16 @@
"0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11556"
+ "11729"
],
"x-ms-request-id": [
- "59701749-1c6e-46b5-9dca-48249de2f955"
+ "2d4a28d5-c43f-49e8-8db3-b389449a000f"
],
"x-ms-correlation-request-id": [
- "59701749-1c6e-46b5-9dca-48249de2f955"
+ "2d4a28d5-c43f-49e8-8db3-b389449a000f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223635Z:59701749-1c6e-46b5-9dca-48249de2f955"
+ "NORTHCENTRALUS:20200514T212747Z:2d4a28d5-c43f-49e8-8db3-b389449a000f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28356,7 +17394,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:35 GMT"
+ "Thu, 14 May 2020 21:27:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28365,20 +17403,20 @@
"-1"
],
"Content-Length": [
- "1427"
+ "1423"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:36:21.9253869Z\",\r\n \"duration\": \"PT1M20.8802637S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:27:37.0100728Z\",\r\n \"duration\": \"PT47.8939537S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deployments/ps6657?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczY2NTc/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deployments/ps500?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczUwMD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "660bbef2-913b-4533-9f13-df70cb774792"
+ "a963d79c-3943-4a10-9355-4d6a26fdcfc2"
],
"Accept-Language": [
"en-US"
@@ -28398,16 +17436,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11554"
+ "11727"
],
"x-ms-request-id": [
- "b01359b2-10b3-43b2-a3fd-b20240ccab89"
+ "2530afc2-3ae1-4ed9-bd88-09f2f6223f9b"
],
"x-ms-correlation-request-id": [
- "b01359b2-10b3-43b2-a3fd-b20240ccab89"
+ "2530afc2-3ae1-4ed9-bd88-09f2f6223f9b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223636Z:b01359b2-10b3-43b2-a3fd-b20240ccab89"
+ "NORTHCENTRALUS:20200514T212748Z:2530afc2-3ae1-4ed9-bd88-09f2f6223f9b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28416,7 +17454,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:35 GMT"
+ "Thu, 14 May 2020 21:27:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28425,23 +17463,23 @@
"-1"
],
"Content-Length": [
- "8452"
+ "8448"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deployments/ps6657\",\r\n \"name\": \"ps6657\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:36:35.9339335Z\",\r\n \"duration\": \"PT1M34.8888103S\",\r\n \"correlationId\": \"96fbbb09-7847-4c24-9dbe-23c0ad7dbb46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"result\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deployments/ps500\",\r\n \"name\": \"ps500\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"3155418770661771574\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"foo bar\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzureCLI\"\r\n },\r\n \"azCliVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2.0.80\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:27:47.7522309Z\",\r\n \"duration\": \"PT58.6361118S\",\r\n \"correlationId\": \"c212046f-6f18-4bc7-a300-a9d7afec4c46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"result\": {\r\n \"type\": \"Object\",\r\n \"value\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4?api-version=2019-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDNhNjczMWItYTZmYi00ZTBkLTg5YWMtZmE4ZTg3YTc4ZWQ0P2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1?api-version=2019-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNjlmYWM1YzItMTdhZC00OGQ1LWE0YmUtZGJiMjVjMDY3ZGMxP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a8360c6-4d66-4a0d-805d-0ef918ff1c24"
+ "ef850e86-df4e-4a1e-9464-9a88db951663"
],
"Accept-Language": [
"en-US"
@@ -28461,7 +17499,7 @@
"no-cache"
],
"x-ms-request-id": [
- "e267e608-965a-4552-9def-51c7124cc51b"
+ "dda66349-d99e-4c84-b4fb-d044a86e5594"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -28470,10 +17508,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "fa68ea71-ee6b-4c3b-9d2f-c20489f18c5f"
+ "5351b5a2-00e3-40c3-85a7-d654d409399d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223636Z:fa68ea71-ee6b-4c3b-9d2f-c20489f18c5f"
+ "NORTHCENTRALUS:20200514T212748Z:5351b5a2-00e3-40c3-85a7-d654d409399d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28482,10 +17520,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:36 GMT"
+ "Thu, 14 May 2020 21:27:48 GMT"
],
"Content-Length": [
- "11523"
+ "11521"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28497,17 +17535,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-13T22:35:04.8668703Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-13T22:35:04.8668703Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.ContainerInstance/containerGroups/tbldbzuyuuuhoazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Storage/storageAccounts/tbldbzuyuuuhoazscripts\",\r\n \"startTime\": \"2020-05-13T22:35:07.4219738Z\",\r\n \"endTime\": \"2020-05-13T22:36:26.5405425Z\",\r\n \"expirationTime\": \"2020-05-14T22:36:26.5405425Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n}",
+ "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-14T21:26:52.3680782Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-14T21:26:52.3680782Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.ContainerInstance/containerGroups/i2omxcvrp2sliazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Storage/storageAccounts/i2omxcvrp2sliazscripts\",\r\n \"startTime\": \"2020-05-14T21:26:54.49988Z\",\r\n \"endTime\": \"2020-05-14T21:27:43.4097902Z\",\r\n \"expirationTime\": \"2020-05-15T21:27:43.4097902Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4?api-version=2019-10-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDNhNjczMWItYTZmYi00ZTBkLTg5YWMtZmE4ZTg3YTc4ZWQ0P2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1?api-version=2019-10-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNjlmYWM1YzItMTdhZC00OGQ1LWE0YmUtZGJiMjVjMDY3ZGMxP2FwaS12ZXJzaW9uPTIwMTktMTAtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac0318a0-de94-430b-bd3d-0490feb7e719"
+ "de9a91d2-5edd-49eb-a77d-dfc5c6e2b306"
],
"Accept-Language": [
"en-US"
@@ -28527,7 +17565,7 @@
"no-cache"
],
"x-ms-request-id": [
- "7f3bb84a-94c8-4566-b681-6af12bfb9e71"
+ "ed9ab706-44e6-4d13-ab6f-c9ad7843a65c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -28536,10 +17574,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "7fe836dc-7b3c-4ce6-80c3-f23b5891d194"
+ "1f7cd169-5fad-4a93-a2b5-d747210f7eff"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223638Z:7fe836dc-7b3c-4ce6-80c3-f23b5891d194"
+ "NORTHCENTRALUS:20200514T212749Z:1f7cd169-5fad-4a93-a2b5-d747210f7eff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28548,10 +17586,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:37 GMT"
+ "Thu, 14 May 2020 21:27:49 GMT"
],
"Content-Length": [
- "11523"
+ "11521"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28563,17 +17601,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-13T22:35:04.8668703Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-13T22:35:04.8668703Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.ContainerInstance/containerGroups/tbldbzuyuuuhoazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Storage/storageAccounts/tbldbzuyuuuhoazscripts\",\r\n \"startTime\": \"2020-05-13T22:35:07.4219738Z\",\r\n \"endTime\": \"2020-05-13T22:36:26.5405425Z\",\r\n \"expirationTime\": \"2020-05-14T22:36:26.5405425Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4\"\r\n}",
+ "ResponseBody": "{\r\n \"kind\": \"AzureCLI\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\": {\r\n \"principalId\": \"97939ebd-fa2e-4055-8e3b-eb5252632e6a\",\r\n \"clientId\": \"0376d532-7364-4bec-8989-e11939b72a6a\"\r\n }\r\n }\r\n },\r\n \"location\": \"westus2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2020-05-14T21:26:52.3680782Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2020-05-14T21:26:52.3680782Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"azCliVersion\": \"2.0.80\",\r\n \"scriptContent\": \"result=$(az group list); echo \\\"arg1 is: $1 \\r\\\"; echo \\\"arg2 is: $2 \\r\\\"; echo $result | jq -c '{Result: map({id: .id})}' > $AZ_SCRIPTS_OUTPUT_PATH; echo \\\"Output is: \\r $(cat $AZ_SCRIPTS_OUTPUT_PATH)\\\"\",\r\n \"arguments\": \"foo bar\",\r\n \"retentionInterval\": \"P1D\",\r\n \"timeout\": \"PT30M\",\r\n \"containerSettings\": {},\r\n \"status\": {\r\n \"containerInstanceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.ContainerInstance/containerGroups/i2omxcvrp2sliazscripts\",\r\n \"storageAccountId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Storage/storageAccounts/i2omxcvrp2sliazscripts\",\r\n \"startTime\": \"2020-05-14T21:26:54.49988Z\",\r\n \"endTime\": \"2020-05-14T21:27:43.4097902Z\",\r\n \"expirationTime\": \"2020-05-15T21:27:43.4097902Z\"\r\n },\r\n \"outputs\": {\r\n \"Result\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458\"\r\n }\r\n ]\r\n },\r\n \"cleanupPreference\": \"OnExpiration\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4/logs/default?api-version=2019-10-01-preview&tail=0",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDNhNjczMWItYTZmYi00ZTBkLTg5YWMtZmE4ZTg3YTc4ZWQ0L2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1/logs/default?api-version=2019-10-01-preview&tail=0",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNjlmYWM1YzItMTdhZC00OGQ1LWE0YmUtZGJiMjVjMDY3ZGMxL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0w",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e49c2555-73f5-4c03-bff6-900514b03c1c"
+ "68a7ae92-060e-42ba-a6de-dd3d39154844"
],
"Accept-Language": [
"en-US"
@@ -28593,7 +17631,7 @@
"no-cache"
],
"x-ms-request-id": [
- "441e8ee2-733d-45dc-b151-f2c2ad397dac"
+ "c0c80660-bad0-4572-8493-202844d95a53"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -28602,10 +17640,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "8c4ee32b-a6b1-4256-b941-6c07c0df1ccd"
+ "8ee91d42-ab21-4cf5-a3fb-9165a701e80a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223637Z:8c4ee32b-a6b1-4256-b941-6c07c0df1ccd"
+ "NORTHCENTRALUS:20200514T212749Z:8ee91d42-ab21-4cf5-a3fb-9165a701e80a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28614,7 +17652,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:36 GMT"
+ "Thu, 14 May 2020 21:27:49 GMT"
],
"Content-Length": [
"7451"
@@ -28629,17 +17667,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \"arg1 is: foo \\r arg2 is: bar \\r Output is: \\r {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458\\\"}]}\\n\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4/logs/default?api-version=2019-10-01-preview&tail=2",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtMDNhNjczMWItYTZmYi00ZTBkLTg5YWMtZmE4ZTg3YTc4ZWQ0L2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1/logs/default?api-version=2019-10-01-preview&tail=2",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50U2NyaXB0cy9Qc1Rlc3QtRGVwbG95bWVudFNjcmlwdHMtNjlmYWM1YzItMTdhZC00OGQ1LWE0YmUtZGJiMjVjMDY3ZGMxL2xvZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTEwLTAxLXByZXZpZXcmdGFpbD0y",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb400fc7-2565-463f-b1e6-a048655b7c00"
+ "0093c117-36ba-49e0-984e-ddcdb545b103"
],
"Accept-Language": [
"en-US"
@@ -28659,7 +17697,7 @@
"no-cache"
],
"x-ms-request-id": [
- "1b8f06a7-a2df-4998-bb86-8ade03953941"
+ "0c06f90b-9209-409d-98bc-a50674584acc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -28668,10 +17706,10 @@
"11999"
],
"x-ms-correlation-request-id": [
- "1888c52e-dae7-4b1e-baa9-cb429d25baae"
+ "7db98951-c7a1-4f2d-adf4-6e64a9180422"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223638Z:1888c52e-dae7-4b1e-baa9-cb429d25baae"
+ "NORTHCENTRALUS:20200514T212750Z:7db98951-c7a1-4f2d-adf4-6e64a9180422"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28680,7 +17718,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:38 GMT"
+ "Thu, 14 May 2020 21:27:49 GMT"
],
"Content-Length": [
"7418"
@@ -28695,17 +17733,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps8184/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-03a6731b-a6fb-4e0d-89ac-fa8e87a78ed4/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"log\": \" Output is: \\n {\\\"Result\\\":[{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/new-testrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/NetworkWatcherRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/nsgrg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/OuldKVRG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Rg1-Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/RG_test123\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/scriptdemo\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/storageRG_Test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-dine-shenglol\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/testresourcegroup_bp3\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/VNetBP-RG\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg769\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg4942\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg2541\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg3119\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/csmrg7839\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjwDeleteMe\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/rjw-debug-sacreate\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-bp-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/SDK-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-01\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-02\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/shenglol-ps-test-03\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-003\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz---test--004-rg\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4210\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6235\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6561\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7920\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps514\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6838\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps193\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2551\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1923\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/test-this\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps757\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps5799\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9965\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps377\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6136\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps886\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6785\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7721\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9011\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-002\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/919f9b58-7a4d-48b6-b3e4-39729ef7dae5\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/8663c347-6f8d-40ba-8efa-751f4c7a6616\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/0924917e-8d29-4d74-924e-3445a1087486\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/a19e3f1a-ff71-4343-a722-6c9e7a204ed7\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/3ecff93b-4ffc-4d40-9e66-b723893aca89\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2482\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9089\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2010\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4581\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9344\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3436\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9832\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6758\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1594\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9658\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7915\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/filiz-test-001\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1569\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps870\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps6868\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3816\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps845\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3932\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4600\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2414\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1534\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3065\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9031\\\"},{\\\"id\\\":\\\"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458\\\"}]}\"\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3458/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-69fac5c2-17ad-48d5-a4be-dbb25c067dc1/logs/default\",\r\n \"type\": \"Microsoft.Resources/deploymentScripts/logs\",\r\n \"name\": \"default\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps8184?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzODE4ND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3458?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQ1OD9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b57cea80-9109-4093-ab2b-c5d599214795"
+ "9fc9cf9b-abf2-49fb-9238-3bdb0b6c86f7"
],
"Accept-Language": [
"en-US"
@@ -28725,7 +17763,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -28734,13 +17772,13 @@
"14999"
],
"x-ms-request-id": [
- "c1127123-b208-4df9-a843-1c6d8d84e299"
+ "6664b13d-40e6-43c3-9f68-6bdfbdcc8f62"
],
"x-ms-correlation-request-id": [
- "c1127123-b208-4df9-a843-1c6d8d84e299"
+ "6664b13d-40e6-43c3-9f68-6bdfbdcc8f62"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223640Z:c1127123-b208-4df9-a843-1c6d8d84e299"
+ "NORTHCENTRALUS:20200514T212752Z:6664b13d-40e6-43c3-9f68-6bdfbdcc8f62"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28749,7 +17787,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:40 GMT"
+ "Thu, 14 May 2020 21:27:51 GMT"
],
"Expires": [
"-1"
@@ -28762,8 +17800,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -28782,7 +17820,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -28791,13 +17829,13 @@
"11998"
],
"x-ms-request-id": [
- "b7d588cc-d16f-4431-85b6-f9312ccdcc01"
+ "bbdf6bdd-1a25-4581-b44e-4cd054feeb48"
],
"x-ms-correlation-request-id": [
- "b7d588cc-d16f-4431-85b6-f9312ccdcc01"
+ "bbdf6bdd-1a25-4581-b44e-4cd054feeb48"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223656Z:b7d588cc-d16f-4431-85b6-f9312ccdcc01"
+ "NORTHCENTRALUS:20200514T212807Z:bbdf6bdd-1a25-4581-b44e-4cd054feeb48"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28806,7 +17844,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:36:56 GMT"
+ "Thu, 14 May 2020 21:28:06 GMT"
],
"Expires": [
"-1"
@@ -28819,8 +17857,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -28839,7 +17877,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -28848,13 +17886,13 @@
"11997"
],
"x-ms-request-id": [
- "e8f2c361-dc06-4876-a4cc-217c2bfb71da"
+ "7aee82a5-31dd-468d-aa0d-547ae926f327"
],
"x-ms-correlation-request-id": [
- "e8f2c361-dc06-4876-a4cc-217c2bfb71da"
+ "7aee82a5-31dd-468d-aa0d-547ae926f327"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223711Z:e8f2c361-dc06-4876-a4cc-217c2bfb71da"
+ "NORTHCENTRALUS:20200514T212822Z:7aee82a5-31dd-468d-aa0d-547ae926f327"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28863,7 +17901,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:37:11 GMT"
+ "Thu, 14 May 2020 21:28:22 GMT"
],
"Expires": [
"-1"
@@ -28876,8 +17914,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -28896,7 +17934,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -28905,13 +17943,13 @@
"11996"
],
"x-ms-request-id": [
- "ff5bd09c-8052-497a-ab41-6ab963224abd"
+ "39f290cf-a007-42bf-858e-18e778033e32"
],
"x-ms-correlation-request-id": [
- "ff5bd09c-8052-497a-ab41-6ab963224abd"
+ "39f290cf-a007-42bf-858e-18e778033e32"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223726Z:ff5bd09c-8052-497a-ab41-6ab963224abd"
+ "NORTHCENTRALUS:20200514T212838Z:39f290cf-a007-42bf-858e-18e778033e32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28920,7 +17958,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:37:26 GMT"
+ "Thu, 14 May 2020 21:28:37 GMT"
],
"Expires": [
"-1"
@@ -28933,8 +17971,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -28953,7 +17991,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -28962,13 +18000,13 @@
"11995"
],
"x-ms-request-id": [
- "b224fb50-519c-4285-bad7-56c719e437c7"
+ "7b7cc704-dd61-4949-80e0-a7254220a8d6"
],
"x-ms-correlation-request-id": [
- "b224fb50-519c-4285-bad7-56c719e437c7"
+ "7b7cc704-dd61-4949-80e0-a7254220a8d6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223741Z:b224fb50-519c-4285-bad7-56c719e437c7"
+ "NORTHCENTRALUS:20200514T212853Z:7b7cc704-dd61-4949-80e0-a7254220a8d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -28977,7 +18015,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:37:41 GMT"
+ "Thu, 14 May 2020 21:28:53 GMT"
],
"Expires": [
"-1"
@@ -28990,8 +18028,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -29010,7 +18048,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
],
"Retry-After": [
"0"
@@ -29019,13 +18057,13 @@
"11994"
],
"x-ms-request-id": [
- "a12f05c0-d02a-49f2-b745-0686044ff227"
+ "d1833113-2c72-4dcb-a615-6eb37359eebd"
],
"x-ms-correlation-request-id": [
- "a12f05c0-d02a-49f2-b745-0686044ff227"
+ "d1833113-2c72-4dcb-a615-6eb37359eebd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223756Z:a12f05c0-d02a-49f2-b745-0686044ff227"
+ "NORTHCENTRALUS:20200514T212908Z:d1833113-2c72-4dcb-a615-6eb37359eebd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -29034,7 +18072,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:37:56 GMT"
+ "Thu, 14 May 2020 21:29:08 GMT"
],
"Expires": [
"-1"
@@ -29047,8 +18085,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -29066,74 +18104,17 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01"
- ],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-request-id": [
- "11cf98ea-39da-4f87-8ec5-90be4561979d"
- ],
- "x-ms-correlation-request-id": [
- "11cf98ea-39da-4f87-8ec5-90be4561979d"
- ],
- "x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223812Z:11cf98ea-39da-4f87-8ec5-90be4561979d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 13 May 2020 22:38:11 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28207.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-request-id": [
- "77c59292-98ff-419b-89fa-228a7358b4ce"
+ "77954de6-9226-44fd-9bda-c43ed80bea3e"
],
"x-ms-correlation-request-id": [
- "77c59292-98ff-419b-89fa-228a7358b4ce"
+ "77954de6-9226-44fd-9bda-c43ed80bea3e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223827Z:77c59292-98ff-419b-89fa-228a7358b4ce"
+ "NORTHCENTRALUS:20200514T212923Z:77954de6-9226-44fd-9bda-c43ed80bea3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -29142,7 +18123,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:38:26 GMT"
+ "Thu, 14 May 2020 21:29:22 GMT"
],
"Expires": [
"-1"
@@ -29158,8 +18139,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxODQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE9EUXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME5UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -29178,16 +18159,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-request-id": [
- "490bdf95-3fe1-4522-9572-8748d6a37b67"
+ "64fdf230-3598-4968-bf1f-df807bb9259a"
],
"x-ms-correlation-request-id": [
- "490bdf95-3fe1-4522-9572-8748d6a37b67"
+ "64fdf230-3598-4968-bf1f-df807bb9259a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T223827Z:490bdf95-3fe1-4522-9572-8748d6a37b67"
+ "NORTHCENTRALUS:20200514T212923Z:64fdf230-3598-4968-bf1f-df807bb9259a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -29196,7 +18177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:38:26 GMT"
+ "Thu, 14 May 2020 21:29:23 GMT"
],
"Expires": [
"-1"
@@ -29214,8 +18195,8 @@
],
"Names": {
"Test-PipeDeploymentScriptObjectToGetLogs": [
- "ps8184",
- "ps6657"
+ "ps3458",
+ "ps500"
]
},
"Variables": {
diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptTrySaveNonExistingFilePathForLogFile.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptTrySaveNonExistingFilePathForLogFile.json
index 7945448a9609..ad7ce35a45ac 100644
--- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptTrySaveNonExistingFilePathForLogFile.json
+++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentScriptsTests/TestDeploymentScriptTrySaveNonExistingFilePathForLogFile.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3ND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b5902fa6-c3b5-49cb-81f3-b7b4d3b67733"
+ "5142351a-143c-4181-aa2c-d65b1b2e8dd2"
],
"Accept-Language": [
"en-US"
@@ -33,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "0af57b5a-ec35-4d90-abe0-44e79b5916df"
+ "a095d80f-f505-498d-8c4a-d3003c863e00"
],
"x-ms-correlation-request-id": [
- "0af57b5a-ec35-4d90-abe0-44e79b5916df"
+ "a095d80f-f505-498d-8c4a-d3003c863e00"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224541Z:0af57b5a-ec35-4d90-abe0-44e79b5916df"
+ "NORTHCENTRALUS:20200514T213228Z:a095d80f-f505-498d-8c4a-d3003c863e00"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -48,7 +48,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:40 GMT"
+ "Thu, 14 May 2020 21:32:27 GMT"
],
"Content-Length": [
"98"
@@ -67,13 +67,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3ND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53767243-aba6-49b3-acf4-65d7fdbfb974"
+ "4ab8638c-32a3-4578-bcdb-876b792f629c"
],
"Accept-Language": [
"en-US"
@@ -96,13 +96,13 @@
"11999"
],
"x-ms-request-id": [
- "716a712c-7cd6-4d87-9ae9-357e8bc80a7e"
+ "3ec02467-5f14-4123-b6d0-cccc1b9811f6"
],
"x-ms-correlation-request-id": [
- "716a712c-7cd6-4d87-9ae9-357e8bc80a7e"
+ "3ec02467-5f14-4123-b6d0-cccc1b9811f6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224729Z:716a712c-7cd6-4d87-9ae9-357e8bc80a7e"
+ "NORTHCENTRALUS:20200514T213455Z:3ec02467-5f14-4123-b6d0-cccc1b9811f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:29 GMT"
+ "Thu, 14 May 2020 21:34:55 GMT"
],
"Content-Length": [
"0"
@@ -127,13 +127,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3ND9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMj9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb958049-7de8-4496-b292-635125d65ba1"
+ "13686e16-5fa5-468c-a0db-a87c58dfae2e"
],
"Accept-Language": [
"en-US"
@@ -162,13 +162,13 @@
"1199"
],
"x-ms-request-id": [
- "ded2a977-aad8-408d-95f7-7d6ffd799dec"
+ "4c98c629-0fcc-4d41-95fb-1110c1839c8e"
],
"x-ms-correlation-request-id": [
- "ded2a977-aad8-408d-95f7-7d6ffd799dec"
+ "4c98c629-0fcc-4d41-95fb-1110c1839c8e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224542Z:ded2a977-aad8-408d-95f7-7d6ffd799dec"
+ "NORTHCENTRALUS:20200514T213229Z:4c98c629-0fcc-4d41-95fb-1110c1839c8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -177,7 +177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:42 GMT"
+ "Thu, 14 May 2020 21:32:29 GMT"
],
"Content-Length": [
"210"
@@ -192,17 +192,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674\",\r\n \"name\": \"ps9674\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412\",\r\n \"name\": \"ps4412\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/validate?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/validate?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjEvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"arguments\": {\r\n \"value\": \"\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21d5e55a-8f11-4ed7-b38d-080224cb7780"
+ "5242f67e-07eb-480a-a817-17c5fd7ae89c"
],
"Accept-Language": [
"en-US"
@@ -231,13 +231,13 @@
"1199"
],
"x-ms-request-id": [
- "3c588604-0b7f-4fdb-8bbe-bfae67c83d35"
+ "a9ed06f9-1b69-42c4-a3b0-1010c3941e60"
],
"x-ms-correlation-request-id": [
- "3c588604-0b7f-4fdb-8bbe-bfae67c83d35"
+ "a9ed06f9-1b69-42c4-a3b0-1010c3941e60"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224544Z:3c588604-0b7f-4fdb-8bbe-bfae67c83d35"
+ "NORTHCENTRALUS:20200514T213231Z:a9ed06f9-1b69-42c4-a3b0-1010c3941e60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -246,7 +246,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:44 GMT"
+ "Thu, 14 May 2020 21:32:30 GMT"
],
"Content-Length": [
"1534"
@@ -261,17 +261,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"a6942510-9c22-4804-b84d-5308c09b3296\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:45:44.0419503Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"3c588604-0b7f-4fdb-8bbe-bfae67c83d35\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-a6942510-9c22-4804-b84d-5308c09b3296\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"fc327845-346e-4d9f-8541-4bc5380359aa\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:32:30.4527031Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"a9ed06f9-1b69-42c4-a3b0-1010c3941e60\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-fc327845-346e-4d9f-8541-4bc5380359aa\"\r\n }\r\n ]\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"arguments\": {\r\n \"value\": \"\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"string\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"string\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"[newGuid()]\"\r\n }\r\n },\r\n \"variables\": {\r\n \"scriptName\": \"[concat('PsTest-DeploymentScripts-', parameters('scriptSuffix'))]\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Resources/deploymentScripts\",\r\n \"name\": \"[variables('scriptName')]\",\r\n \"apiVersion\": \"2019-10-01-preview\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"kind\": \"[parameters('scriptKind')]\",\r\n \"identity\": {\r\n \"type\": \"userAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"[parameters('managedIdentityId')]\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"azPowerShellVersion\": \"[parameters('azPowerShellVersion')]\",\r\n \"scriptContent\": \"[parameters('scriptContent')]\",\r\n \"Arguments\": \"[parameters('arguments')]\",\r\n \"timeout\": \"[parameters('timeout')]\",\r\n \"cleanupPreference\": \"[parameters('scriptCleanupPreference')]\",\r\n \"retentionInterval\": \"[parameters('retentionInterval')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"result\": {\r\n \"value\": \"[reference(variables('scriptName')).outputs.RGs]\",\r\n \"type\": \"array\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"value\": \"\"\r\n },\r\n \"scriptContent\": {\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptKind\": {\r\n \"value\": \"AzurePowerShell\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a53245dd-e714-4698-9e41-4c4a613ac53c"
+ "015c4d53-f03e-494f-8607-ae6144061a89"
],
"Accept-Language": [
"en-US"
@@ -297,19 +297,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operationStatuses/08586121969402341052?api-version=2019-10-01"
+ "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operationStatuses/08586121149337603145?api-version=2019-10-01"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a"
+ "c9d2a9c3-3658-4573-96a7-c3a2bcb11044"
],
"x-ms-correlation-request-id": [
- "1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a"
+ "c9d2a9c3-3658-4573-96a7-c3a2bcb11044"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224546Z:1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a"
+ "NORTHCENTRALUS:20200514T213232Z:c9d2a9c3-3658-4573-96a7-c3a2bcb11044"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -318,10 +318,10 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:45 GMT"
+ "Thu, 14 May 2020 21:32:32 GMT"
],
"Content-Length": [
- "1323"
+ "1325"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,17 +333,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:45:46.43538Z\",\r\n \"duration\": \"PT1.1918517S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-14T21:32:32.4099454Z\",\r\n \"duration\": \"PT0.6926355S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "095a24de-62dc-49d1-b993-f4a5c2b424f1"
+ "30b9d752-7783-4a54-a2b0-6aaaf2c83b65"
],
"Accept-Language": [
"en-US"
@@ -366,13 +366,13 @@
"11999"
],
"x-ms-request-id": [
- "5ba67f70-de98-4fd4-a742-1f188dde4546"
+ "010cf26b-03d8-4a25-9ffe-456621389cd2"
],
"x-ms-correlation-request-id": [
- "5ba67f70-de98-4fd4-a742-1f188dde4546"
+ "010cf26b-03d8-4a25-9ffe-456621389cd2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224547Z:5ba67f70-de98-4fd4-a742-1f188dde4546"
+ "NORTHCENTRALUS:20200514T213233Z:010cf26b-03d8-4a25-9ffe-456621389cd2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -381,7 +381,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:46 GMT"
+ "Thu, 14 May 2020 21:32:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -400,13 +400,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "85335d73-05be-415c-9d3f-3e2653f6256f"
+ "06fd8a46-97bb-4e11-ade3-744b49f6f6db"
],
"Accept-Language": [
"en-US"
@@ -429,13 +429,13 @@
"11997"
],
"x-ms-request-id": [
- "4159f03b-4922-4694-aa8a-6fc3ce574fe5"
+ "9c6f9df4-aceb-4e26-a336-cd55d558b2af"
],
"x-ms-correlation-request-id": [
- "4159f03b-4922-4694-aa8a-6fc3ce574fe5"
+ "9c6f9df4-aceb-4e26-a336-cd55d558b2af"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224547Z:4159f03b-4922-4694-aa8a-6fc3ce574fe5"
+ "NORTHCENTRALUS:20200514T213233Z:9c6f9df4-aceb-4e26-a336-cd55d558b2af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -444,7 +444,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:46 GMT"
+ "Thu, 14 May 2020 21:32:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -463,13 +463,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31dc77ad-bd9f-4322-b6a7-0bab1ded9bc6"
+ "8f1af8be-de4a-4494-b77b-7470e4974273"
],
"Accept-Language": [
"en-US"
@@ -492,13 +492,13 @@
"11995"
],
"x-ms-request-id": [
- "ca8e36d1-89a6-46e6-af4a-5aaf0752f252"
+ "c74ecf6e-e958-4eb7-adc4-daba85fd898d"
],
"x-ms-correlation-request-id": [
- "ca8e36d1-89a6-46e6-af4a-5aaf0752f252"
+ "c74ecf6e-e958-4eb7-adc4-daba85fd898d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224547Z:ca8e36d1-89a6-46e6-af4a-5aaf0752f252"
+ "NORTHCENTRALUS:20200514T213233Z:c74ecf6e-e958-4eb7-adc4-daba85fd898d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,7 +507,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:46 GMT"
+ "Thu, 14 May 2020 21:32:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -526,13 +526,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0b26f28-a6d7-41d8-b596-4c7f4e6b1def"
+ "95fd5e9b-b046-4cac-b3da-4a15524cfba7"
],
"Accept-Language": [
"en-US"
@@ -555,13 +555,13 @@
"11993"
],
"x-ms-request-id": [
- "acf6f01a-e39d-4ab9-b2be-35b06d49f9bb"
+ "ff909469-ec1e-4f10-bc1e-06cd3999b25d"
],
"x-ms-correlation-request-id": [
- "acf6f01a-e39d-4ab9-b2be-35b06d49f9bb"
+ "ff909469-ec1e-4f10-bc1e-06cd3999b25d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224548Z:acf6f01a-e39d-4ab9-b2be-35b06d49f9bb"
+ "NORTHCENTRALUS:20200514T213234Z:ff909469-ec1e-4f10-bc1e-06cd3999b25d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -570,7 +570,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:47 GMT"
+ "Thu, 14 May 2020 21:32:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -589,13 +589,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1c4ade6-b48e-46b5-80ff-ffbd6de0de45"
+ "cfac6668-c1cd-4e6b-bd14-4d02427eae64"
],
"Accept-Language": [
"en-US"
@@ -618,13 +618,13 @@
"11991"
],
"x-ms-request-id": [
- "6b3341d9-aa8a-4f39-8f32-525e24ab3747"
+ "70616799-cf41-49cd-828d-5ae1a443e7cd"
],
"x-ms-correlation-request-id": [
- "6b3341d9-aa8a-4f39-8f32-525e24ab3747"
+ "70616799-cf41-49cd-828d-5ae1a443e7cd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224548Z:6b3341d9-aa8a-4f39-8f32-525e24ab3747"
+ "NORTHCENTRALUS:20200514T213234Z:70616799-cf41-49cd-828d-5ae1a443e7cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -633,7 +633,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:47 GMT"
+ "Thu, 14 May 2020 21:32:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -652,13 +652,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17f74cd4-86ee-4094-b693-31cce8815510"
+ "18b26fd0-19e2-46a6-bbd4-458d35204d4a"
],
"Accept-Language": [
"en-US"
@@ -681,13 +681,13 @@
"11989"
],
"x-ms-request-id": [
- "def89ba6-6ff8-4531-bbcc-d8b803406f40"
+ "e319cc4f-9c98-4f48-a544-f3eafafbdb03"
],
"x-ms-correlation-request-id": [
- "def89ba6-6ff8-4531-bbcc-d8b803406f40"
+ "e319cc4f-9c98-4f48-a544-f3eafafbdb03"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224549Z:def89ba6-6ff8-4531-bbcc-d8b803406f40"
+ "NORTHCENTRALUS:20200514T213235Z:e319cc4f-9c98-4f48-a544-f3eafafbdb03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -696,7 +696,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:49 GMT"
+ "Thu, 14 May 2020 21:32:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -715,13 +715,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ebf4354-7f7a-41c9-9c0c-f7073e964d71"
+ "e6ef409a-441f-423f-9976-ddac1d1e5f09"
],
"Accept-Language": [
"en-US"
@@ -744,13 +744,13 @@
"11987"
],
"x-ms-request-id": [
- "00195b5e-c580-4a44-81f9-6844f2f9c9bb"
+ "0a29ff87-40c6-40d3-9061-816934b33896"
],
"x-ms-correlation-request-id": [
- "00195b5e-c580-4a44-81f9-6844f2f9c9bb"
+ "0a29ff87-40c6-40d3-9061-816934b33896"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224549Z:00195b5e-c580-4a44-81f9-6844f2f9c9bb"
+ "NORTHCENTRALUS:20200514T213235Z:0a29ff87-40c6-40d3-9061-816934b33896"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -759,7 +759,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:49 GMT"
+ "Thu, 14 May 2020 21:32:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -778,13 +778,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b06b93e-d54d-4ae3-be3d-5164254cb548"
+ "2aca30a7-ffe5-4fa8-93b1-30ef9c30c660"
],
"Accept-Language": [
"en-US"
@@ -807,13 +807,13 @@
"11985"
],
"x-ms-request-id": [
- "e91af6c9-b182-4ab2-ac5d-0c664f196769"
+ "fba32210-b8ab-4618-b8ed-e9469b710b59"
],
"x-ms-correlation-request-id": [
- "e91af6c9-b182-4ab2-ac5d-0c664f196769"
+ "fba32210-b8ab-4618-b8ed-e9469b710b59"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224549Z:e91af6c9-b182-4ab2-ac5d-0c664f196769"
+ "NORTHCENTRALUS:20200514T213235Z:fba32210-b8ab-4618-b8ed-e9469b710b59"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -822,7 +822,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:49 GMT"
+ "Thu, 14 May 2020 21:32:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -841,13 +841,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9070008-4973-49ec-876f-4d7f1a7f6a2d"
+ "a2b5e1d6-d98b-45e5-bb73-a5a2577436e4"
],
"Accept-Language": [
"en-US"
@@ -870,13 +870,13 @@
"11983"
],
"x-ms-request-id": [
- "aaaadc36-952c-4719-b1fc-f21044632718"
+ "9740689e-a090-4d31-b3e0-8a6c459411f7"
],
"x-ms-correlation-request-id": [
- "aaaadc36-952c-4719-b1fc-f21044632718"
+ "9740689e-a090-4d31-b3e0-8a6c459411f7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224550Z:aaaadc36-952c-4719-b1fc-f21044632718"
+ "NORTHCENTRALUS:20200514T213236Z:9740689e-a090-4d31-b3e0-8a6c459411f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -885,7 +885,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:50 GMT"
+ "Thu, 14 May 2020 21:32:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -904,13 +904,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb43c5e4-b957-4bb8-9d35-250919ffa44d"
+ "9c61a561-5628-499f-95a2-166821aacedb"
],
"Accept-Language": [
"en-US"
@@ -933,13 +933,13 @@
"11981"
],
"x-ms-request-id": [
- "1b6fd3a6-a9d3-4cd9-9b40-2424dc31a75f"
+ "a63c2c32-bdff-466c-9c8b-1cb2bbb9da5d"
],
"x-ms-correlation-request-id": [
- "1b6fd3a6-a9d3-4cd9-9b40-2424dc31a75f"
+ "a63c2c32-bdff-466c-9c8b-1cb2bbb9da5d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224550Z:1b6fd3a6-a9d3-4cd9-9b40-2424dc31a75f"
+ "NORTHCENTRALUS:20200514T213236Z:a63c2c32-bdff-466c-9c8b-1cb2bbb9da5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -948,7 +948,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:50 GMT"
+ "Thu, 14 May 2020 21:32:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -967,13 +967,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99bdb907-6349-4960-9f8b-a06b722fcd4c"
+ "663fc8d8-027f-49e2-a687-904141d03c14"
],
"Accept-Language": [
"en-US"
@@ -996,13 +996,13 @@
"11979"
],
"x-ms-request-id": [
- "8f23b924-5378-4086-b859-cb96b659e481"
+ "b1fdcb7c-1e17-467b-aa9c-7c3275732e7f"
],
"x-ms-correlation-request-id": [
- "8f23b924-5378-4086-b859-cb96b659e481"
+ "b1fdcb7c-1e17-467b-aa9c-7c3275732e7f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224550Z:8f23b924-5378-4086-b859-cb96b659e481"
+ "NORTHCENTRALUS:20200514T213237Z:b1fdcb7c-1e17-467b-aa9c-7c3275732e7f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1011,7 +1011,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:50 GMT"
+ "Thu, 14 May 2020 21:32:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1030,13 +1030,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b88cff74-1982-44ad-b812-601fbaea1757"
+ "c196d3fa-989b-409c-8c12-0ce4ac9b84bd"
],
"Accept-Language": [
"en-US"
@@ -1059,13 +1059,13 @@
"11977"
],
"x-ms-request-id": [
- "acddaa9b-61c9-44c3-9750-45f04e4a28a0"
+ "21779243-6077-4108-885d-7f7f77d94fc2"
],
"x-ms-correlation-request-id": [
- "acddaa9b-61c9-44c3-9750-45f04e4a28a0"
+ "21779243-6077-4108-885d-7f7f77d94fc2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224551Z:acddaa9b-61c9-44c3-9750-45f04e4a28a0"
+ "NORTHCENTRALUS:20200514T213237Z:21779243-6077-4108-885d-7f7f77d94fc2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1074,7 +1074,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:51 GMT"
+ "Thu, 14 May 2020 21:32:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1083,23 +1083,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1314331Z\",\r\n \"duration\": \"PT3.6357331S\",\r\n \"trackingId\": \"065bbcec-3672-46b2-bb88-5f0d4c03b6ae\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "80b73ec3-60d2-4705-9d4a-c68dbd3ae8e9"
+ "384bb8b0-b947-4354-ae83-c414ea4c28a2"
],
"Accept-Language": [
"en-US"
@@ -1122,13 +1122,13 @@
"11975"
],
"x-ms-request-id": [
- "a23f259f-2a9a-461f-8f65-7fc11cf802e2"
+ "9545a363-4cd2-4cd9-a374-aab4c24d31d4"
],
"x-ms-correlation-request-id": [
- "a23f259f-2a9a-461f-8f65-7fc11cf802e2"
+ "9545a363-4cd2-4cd9-a374-aab4c24d31d4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224551Z:a23f259f-2a9a-461f-8f65-7fc11cf802e2"
+ "NORTHCENTRALUS:20200514T213237Z:9545a363-4cd2-4cd9-a374-aab4c24d31d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1137,7 +1137,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:51 GMT"
+ "Thu, 14 May 2020 21:32:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1146,23 +1146,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1314331Z\",\r\n \"duration\": \"PT3.6357331S\",\r\n \"trackingId\": \"065bbcec-3672-46b2-bb88-5f0d4c03b6ae\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fbf8173-6be0-4eaf-806e-8ad320380aa8"
+ "03b1ee9b-131e-4afb-80d7-c8c9492f1079"
],
"Accept-Language": [
"en-US"
@@ -1185,13 +1185,13 @@
"11973"
],
"x-ms-request-id": [
- "973d1656-3f38-4b66-b323-311fd74d4eaa"
+ "e2f8141a-f646-494b-9911-26a7f72497e8"
],
"x-ms-correlation-request-id": [
- "973d1656-3f38-4b66-b323-311fd74d4eaa"
+ "e2f8141a-f646-494b-9911-26a7f72497e8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224552Z:973d1656-3f38-4b66-b323-311fd74d4eaa"
+ "NORTHCENTRALUS:20200514T213238Z:e2f8141a-f646-494b-9911-26a7f72497e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1200,7 +1200,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:52 GMT"
+ "Thu, 14 May 2020 21:32:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1209,23 +1209,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1314331Z\",\r\n \"duration\": \"PT3.6357331S\",\r\n \"trackingId\": \"065bbcec-3672-46b2-bb88-5f0d4c03b6ae\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5797c288-634f-4080-bac2-940c8936ae07"
+ "344883c7-f6a4-4ac0-aef0-6feaab7306d0"
],
"Accept-Language": [
"en-US"
@@ -1248,13 +1248,13 @@
"11971"
],
"x-ms-request-id": [
- "13f7ce92-48cf-48fd-9f21-129f707c4e33"
+ "04d06902-1013-4171-8b58-fccb51e3b8a0"
],
"x-ms-correlation-request-id": [
- "13f7ce92-48cf-48fd-9f21-129f707c4e33"
+ "04d06902-1013-4171-8b58-fccb51e3b8a0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224552Z:13f7ce92-48cf-48fd-9f21-129f707c4e33"
+ "NORTHCENTRALUS:20200514T213238Z:04d06902-1013-4171-8b58-fccb51e3b8a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1263,7 +1263,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:52 GMT"
+ "Thu, 14 May 2020 21:32:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1272,23 +1272,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1314331Z\",\r\n \"duration\": \"PT3.6357331S\",\r\n \"trackingId\": \"065bbcec-3672-46b2-bb88-5f0d4c03b6ae\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d677e1e6-4217-44f9-bb87-20d6e9ba741d"
+ "498a1486-c77b-414d-ae7e-70627ad9dc7e"
],
"Accept-Language": [
"en-US"
@@ -1311,13 +1311,13 @@
"11969"
],
"x-ms-request-id": [
- "24302e40-246e-45b0-becd-a84639eeeeb5"
+ "d937eea5-afee-473f-b985-4e61912e4f46"
],
"x-ms-correlation-request-id": [
- "24302e40-246e-45b0-becd-a84639eeeeb5"
+ "d937eea5-afee-473f-b985-4e61912e4f46"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224552Z:24302e40-246e-45b0-becd-a84639eeeeb5"
+ "NORTHCENTRALUS:20200514T213239Z:d937eea5-afee-473f-b985-4e61912e4f46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1326,7 +1326,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:52 GMT"
+ "Thu, 14 May 2020 21:32:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1335,23 +1335,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1314331Z\",\r\n \"duration\": \"PT3.6357331S\",\r\n \"trackingId\": \"065bbcec-3672-46b2-bb88-5f0d4c03b6ae\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47b28211-e2c6-493f-bd68-3138d2fbc044"
+ "bf3c3054-b9af-49bb-9ff8-ef2f179f7638"
],
"Accept-Language": [
"en-US"
@@ -1374,13 +1374,13 @@
"11967"
],
"x-ms-request-id": [
- "eeb999c3-6513-4645-98ff-e53635b16611"
+ "88ff5d7f-4d23-45e7-9b75-a6da26a388f9"
],
"x-ms-correlation-request-id": [
- "eeb999c3-6513-4645-98ff-e53635b16611"
+ "88ff5d7f-4d23-45e7-9b75-a6da26a388f9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224553Z:eeb999c3-6513-4645-98ff-e53635b16611"
+ "NORTHCENTRALUS:20200514T213239Z:88ff5d7f-4d23-45e7-9b75-a6da26a388f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1389,7 +1389,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:53 GMT"
+ "Thu, 14 May 2020 21:32:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1398,23 +1398,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1314331Z\",\r\n \"duration\": \"PT3.6357331S\",\r\n \"trackingId\": \"065bbcec-3672-46b2-bb88-5f0d4c03b6ae\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53c42104-d006-4350-a228-9c1861e44786"
+ "dadb3709-6613-473a-a04e-44c9a7aff09d"
],
"Accept-Language": [
"en-US"
@@ -1437,13 +1437,13 @@
"11965"
],
"x-ms-request-id": [
- "daf0e553-960b-4e86-941e-7493abefab85"
+ "09952ca1-7a74-46f5-a417-a1d98a8697af"
],
"x-ms-correlation-request-id": [
- "daf0e553-960b-4e86-941e-7493abefab85"
+ "09952ca1-7a74-46f5-a417-a1d98a8697af"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224553Z:daf0e553-960b-4e86-941e-7493abefab85"
+ "NORTHCENTRALUS:20200514T213239Z:09952ca1-7a74-46f5-a417-a1d98a8697af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1452,7 +1452,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:53 GMT"
+ "Thu, 14 May 2020 21:32:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1461,23 +1461,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6bed21d-9de0-49e5-8f4d-ece054f2424e"
+ "d713de41-0952-44ae-9fd8-695034304777"
],
"Accept-Language": [
"en-US"
@@ -1500,13 +1500,13 @@
"11963"
],
"x-ms-request-id": [
- "899a21cd-198d-46df-a046-a26a55fa7c6b"
+ "a59b8211-a78d-4c3c-8297-dd9e9150b1de"
],
"x-ms-correlation-request-id": [
- "899a21cd-198d-46df-a046-a26a55fa7c6b"
+ "a59b8211-a78d-4c3c-8297-dd9e9150b1de"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224554Z:899a21cd-198d-46df-a046-a26a55fa7c6b"
+ "NORTHCENTRALUS:20200514T213240Z:a59b8211-a78d-4c3c-8297-dd9e9150b1de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1515,7 +1515,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:53 GMT"
+ "Thu, 14 May 2020 21:32:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1524,23 +1524,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be1bff30-be6a-4d81-a91c-0a92a0f7b2da"
+ "b0795cc4-0910-40cf-b2dc-36bf0442f4ef"
],
"Accept-Language": [
"en-US"
@@ -1563,13 +1563,13 @@
"11961"
],
"x-ms-request-id": [
- "727f2c14-5d74-4a2b-bfae-c35892836429"
+ "bb699ac2-53e7-4117-ab1c-c976b20225fc"
],
"x-ms-correlation-request-id": [
- "727f2c14-5d74-4a2b-bfae-c35892836429"
+ "bb699ac2-53e7-4117-ab1c-c976b20225fc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224554Z:727f2c14-5d74-4a2b-bfae-c35892836429"
+ "NORTHCENTRALUS:20200514T213240Z:bb699ac2-53e7-4117-ab1c-c976b20225fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1578,7 +1578,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:54 GMT"
+ "Thu, 14 May 2020 21:32:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1587,23 +1587,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77e4ae40-7c12-4445-ae18-8527204d8387"
+ "d30acda3-45ac-497f-8e8a-954937ca0b72"
],
"Accept-Language": [
"en-US"
@@ -1626,13 +1626,13 @@
"11959"
],
"x-ms-request-id": [
- "26c53f28-6568-41e9-9897-651a7b6aafd1"
+ "f1322e74-597f-4d57-b254-51671476d1a3"
],
"x-ms-correlation-request-id": [
- "26c53f28-6568-41e9-9897-651a7b6aafd1"
+ "f1322e74-597f-4d57-b254-51671476d1a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224554Z:26c53f28-6568-41e9-9897-651a7b6aafd1"
+ "NORTHCENTRALUS:20200514T213241Z:f1322e74-597f-4d57-b254-51671476d1a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1641,7 +1641,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:54 GMT"
+ "Thu, 14 May 2020 21:32:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1650,23 +1650,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4be750e5-bc3b-4f56-89be-b9dcf00fb53c"
+ "6909d044-f05e-4e71-afcb-f53609981859"
],
"Accept-Language": [
"en-US"
@@ -1689,13 +1689,13 @@
"11957"
],
"x-ms-request-id": [
- "3466d71f-7d13-48ed-97a1-9aeb0994ce95"
+ "91567945-7d3a-4b05-a5b3-68b3e0f987dc"
],
"x-ms-correlation-request-id": [
- "3466d71f-7d13-48ed-97a1-9aeb0994ce95"
+ "91567945-7d3a-4b05-a5b3-68b3e0f987dc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224555Z:3466d71f-7d13-48ed-97a1-9aeb0994ce95"
+ "NORTHCENTRALUS:20200514T213241Z:91567945-7d3a-4b05-a5b3-68b3e0f987dc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1704,7 +1704,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:54 GMT"
+ "Thu, 14 May 2020 21:32:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1713,23 +1713,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1339cbdb-c629-498f-a558-10c76eb33b44"
+ "fe664e8c-1a26-43d8-ae4e-b7e515f894a6"
],
"Accept-Language": [
"en-US"
@@ -1752,13 +1752,13 @@
"11955"
],
"x-ms-request-id": [
- "a96a4160-8c92-4574-987c-5b82236e4157"
+ "a2fcc517-6ecf-494c-af9f-85e427cf8605"
],
"x-ms-correlation-request-id": [
- "a96a4160-8c92-4574-987c-5b82236e4157"
+ "a2fcc517-6ecf-494c-af9f-85e427cf8605"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224555Z:a96a4160-8c92-4574-987c-5b82236e4157"
+ "NORTHCENTRALUS:20200514T213241Z:a2fcc517-6ecf-494c-af9f-85e427cf8605"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1767,7 +1767,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:55 GMT"
+ "Thu, 14 May 2020 21:32:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1776,23 +1776,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48c9b551-f828-46d4-9681-a3592c1da19b"
+ "2a77c07b-d757-4045-a526-e01ea1829803"
],
"Accept-Language": [
"en-US"
@@ -1815,13 +1815,13 @@
"11953"
],
"x-ms-request-id": [
- "94a98797-ec19-4de9-b123-442376c2afa5"
+ "6f127b66-e1a6-4ca7-968c-282ccfff6cf0"
],
"x-ms-correlation-request-id": [
- "94a98797-ec19-4de9-b123-442376c2afa5"
+ "6f127b66-e1a6-4ca7-968c-282ccfff6cf0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224556Z:94a98797-ec19-4de9-b123-442376c2afa5"
+ "NORTHCENTRALUS:20200514T213242Z:6f127b66-e1a6-4ca7-968c-282ccfff6cf0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1830,7 +1830,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:55 GMT"
+ "Thu, 14 May 2020 21:32:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1839,23 +1839,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51985e0b-21f9-457e-87f8-784e8ce4b6a2"
+ "8c5e0fcd-bd95-47f1-b0f6-c81001f33656"
],
"Accept-Language": [
"en-US"
@@ -1878,13 +1878,13 @@
"11951"
],
"x-ms-request-id": [
- "58f5b20d-ff95-4ed2-acc7-242d5b670d57"
+ "a6c89ed5-0046-41f9-8a4c-b262224049d2"
],
"x-ms-correlation-request-id": [
- "58f5b20d-ff95-4ed2-acc7-242d5b670d57"
+ "a6c89ed5-0046-41f9-8a4c-b262224049d2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224556Z:58f5b20d-ff95-4ed2-acc7-242d5b670d57"
+ "NORTHCENTRALUS:20200514T213242Z:a6c89ed5-0046-41f9-8a4c-b262224049d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1893,7 +1893,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:56 GMT"
+ "Thu, 14 May 2020 21:32:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1902,23 +1902,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5371337Z\",\r\n \"duration\": \"PT6.0414337S\",\r\n \"trackingId\": \"0ae8de9a-4675-42c6-9cf0-4edee1e3b85c\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "259f95b0-4cf2-46bb-b83f-6f89a2fbd387"
+ "233bd1d4-dbab-4f42-a3ff-c61525d43e30"
],
"Accept-Language": [
"en-US"
@@ -1941,13 +1941,13 @@
"11949"
],
"x-ms-request-id": [
- "4e5762ff-72ef-41c7-a0dd-966b12fb5e59"
+ "74c6e2c9-135c-4561-ae93-32d10faaa802"
],
"x-ms-correlation-request-id": [
- "4e5762ff-72ef-41c7-a0dd-966b12fb5e59"
+ "74c6e2c9-135c-4561-ae93-32d10faaa802"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224603Z:4e5762ff-72ef-41c7-a0dd-966b12fb5e59"
+ "NORTHCENTRALUS:20200514T213242Z:74c6e2c9-135c-4561-ae93-32d10faaa802"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1956,7 +1956,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:02 GMT"
+ "Thu, 14 May 2020 21:32:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1965,23 +1965,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01b7c416-74c6-47de-bf60-2c9f10f613d9"
+ "3b38e129-ae12-4146-99f4-ed41ddf2b1ed"
],
"Accept-Language": [
"en-US"
@@ -2004,13 +2004,13 @@
"11947"
],
"x-ms-request-id": [
- "fc3c75cc-ad2f-49a1-98db-7a986a8f92e8"
+ "19bcb536-7f66-4e7f-a094-442e1622331c"
],
"x-ms-correlation-request-id": [
- "fc3c75cc-ad2f-49a1-98db-7a986a8f92e8"
+ "19bcb536-7f66-4e7f-a094-442e1622331c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224603Z:fc3c75cc-ad2f-49a1-98db-7a986a8f92e8"
+ "NORTHCENTRALUS:20200514T213243Z:19bcb536-7f66-4e7f-a094-442e1622331c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2019,7 +2019,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:02 GMT"
+ "Thu, 14 May 2020 21:32:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2028,23 +2028,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1eb3e613-1489-4d24-98f1-b0304e1a1d07"
+ "f461d83c-12a8-45df-8254-fbbdc3d24d84"
],
"Accept-Language": [
"en-US"
@@ -2067,13 +2067,13 @@
"11945"
],
"x-ms-request-id": [
- "4ad33a5d-a213-4913-a802-b566127a3b79"
+ "d0996352-2628-40a8-b317-99f6bcded654"
],
"x-ms-correlation-request-id": [
- "4ad33a5d-a213-4913-a802-b566127a3b79"
+ "d0996352-2628-40a8-b317-99f6bcded654"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224603Z:4ad33a5d-a213-4913-a802-b566127a3b79"
+ "NORTHCENTRALUS:20200514T213243Z:d0996352-2628-40a8-b317-99f6bcded654"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2082,7 +2082,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:03 GMT"
+ "Thu, 14 May 2020 21:32:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2091,23 +2091,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59a8f1ce-efb8-47b7-8cb9-d405b19411e8"
+ "ff0cbbf3-c716-4984-bebe-cbd74c3542a5"
],
"Accept-Language": [
"en-US"
@@ -2130,13 +2130,13 @@
"11943"
],
"x-ms-request-id": [
- "b545c5c0-f178-4d6c-a557-e21c553b6e76"
+ "9e9f8581-c738-4bce-8b92-0507f79b0722"
],
"x-ms-correlation-request-id": [
- "b545c5c0-f178-4d6c-a557-e21c553b6e76"
+ "9e9f8581-c738-4bce-8b92-0507f79b0722"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224604Z:b545c5c0-f178-4d6c-a557-e21c553b6e76"
+ "NORTHCENTRALUS:20200514T213244Z:9e9f8581-c738-4bce-8b92-0507f79b0722"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2145,7 +2145,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:03 GMT"
+ "Thu, 14 May 2020 21:32:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2154,23 +2154,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cfd82701-0bb8-4b5c-b584-a05e196459b2"
+ "4cb1d25c-efe1-4d39-a6b7-814e57375ab6"
],
"Accept-Language": [
"en-US"
@@ -2193,13 +2193,13 @@
"11941"
],
"x-ms-request-id": [
- "d93c75b0-b303-493e-b735-2be760268ae4"
+ "0d8d7bc1-bbc5-406c-aa30-2337a181a651"
],
"x-ms-correlation-request-id": [
- "d93c75b0-b303-493e-b735-2be760268ae4"
+ "0d8d7bc1-bbc5-406c-aa30-2337a181a651"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224604Z:d93c75b0-b303-493e-b735-2be760268ae4"
+ "NORTHCENTRALUS:20200514T213244Z:0d8d7bc1-bbc5-406c-aa30-2337a181a651"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2208,7 +2208,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:04 GMT"
+ "Thu, 14 May 2020 21:32:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2217,23 +2217,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "010cfecf-ae49-41ae-91a3-9b8248f42dd7"
+ "bde7fcdb-2ce7-4a0e-8192-be8216a363aa"
],
"Accept-Language": [
"en-US"
@@ -2256,13 +2256,13 @@
"11939"
],
"x-ms-request-id": [
- "138d1682-f21d-4b3f-ac36-9cab121ecd07"
+ "81d81b4f-7623-4970-bc3d-d798d0693646"
],
"x-ms-correlation-request-id": [
- "138d1682-f21d-4b3f-ac36-9cab121ecd07"
+ "81d81b4f-7623-4970-bc3d-d798d0693646"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224605Z:138d1682-f21d-4b3f-ac36-9cab121ecd07"
+ "NORTHCENTRALUS:20200514T213244Z:81d81b4f-7623-4970-bc3d-d798d0693646"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2271,7 +2271,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:04 GMT"
+ "Thu, 14 May 2020 21:32:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2280,23 +2280,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60eda793-9ac8-4fcb-8f56-57e9d337e964"
+ "84242a98-8f61-4696-9756-73482ba81532"
],
"Accept-Language": [
"en-US"
@@ -2319,13 +2319,13 @@
"11937"
],
"x-ms-request-id": [
- "dd231514-f7e8-42ab-b899-eaabe7869e2a"
+ "7e1083f6-6626-4412-af4a-40eddee7e114"
],
"x-ms-correlation-request-id": [
- "dd231514-f7e8-42ab-b899-eaabe7869e2a"
+ "7e1083f6-6626-4412-af4a-40eddee7e114"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224605Z:dd231514-f7e8-42ab-b899-eaabe7869e2a"
+ "NORTHCENTRALUS:20200514T213245Z:7e1083f6-6626-4412-af4a-40eddee7e114"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2334,7 +2334,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:05 GMT"
+ "Thu, 14 May 2020 21:32:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2343,23 +2343,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e93d3b7-81cd-409e-8eb4-013febaa05f6"
+ "1a3b5fff-117c-43a9-b21b-98f530bdd2ef"
],
"Accept-Language": [
"en-US"
@@ -2382,13 +2382,13 @@
"11935"
],
"x-ms-request-id": [
- "364857a7-e17d-42a7-b49b-12d08ac57cbe"
+ "46af7100-8f6c-430f-8bff-a96f8dfeca5e"
],
"x-ms-correlation-request-id": [
- "364857a7-e17d-42a7-b49b-12d08ac57cbe"
+ "46af7100-8f6c-430f-8bff-a96f8dfeca5e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224606Z:364857a7-e17d-42a7-b49b-12d08ac57cbe"
+ "NORTHCENTRALUS:20200514T213245Z:46af7100-8f6c-430f-8bff-a96f8dfeca5e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2397,7 +2397,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:05 GMT"
+ "Thu, 14 May 2020 21:32:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2406,23 +2406,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82b067bf-ba11-427c-a9c4-922c4c55123b"
+ "5f3c0d4d-c0b8-4cec-ad98-34a2c12436e5"
],
"Accept-Language": [
"en-US"
@@ -2445,13 +2445,13 @@
"11933"
],
"x-ms-request-id": [
- "4d4c5f00-8c95-4037-8cfa-6693981aace7"
+ "371934ff-1d9f-4073-a5b2-cd467dcf26ff"
],
"x-ms-correlation-request-id": [
- "4d4c5f00-8c95-4037-8cfa-6693981aace7"
+ "371934ff-1d9f-4073-a5b2-cd467dcf26ff"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224606Z:4d4c5f00-8c95-4037-8cfa-6693981aace7"
+ "NORTHCENTRALUS:20200514T213246Z:371934ff-1d9f-4073-a5b2-cd467dcf26ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2460,7 +2460,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:05 GMT"
+ "Thu, 14 May 2020 21:32:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2469,23 +2469,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19c9338e-c4ff-49f9-aac7-4a276b4d026d"
+ "bc6037d2-0541-434b-bbd0-b1204b479ff4"
],
"Accept-Language": [
"en-US"
@@ -2508,13 +2508,13 @@
"11931"
],
"x-ms-request-id": [
- "5e2352f8-c33e-4dba-a664-d6e17f302507"
+ "aded20bf-d14c-40f7-a45f-1d5a75c0dea5"
],
"x-ms-correlation-request-id": [
- "5e2352f8-c33e-4dba-a664-d6e17f302507"
+ "aded20bf-d14c-40f7-a45f-1d5a75c0dea5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224606Z:5e2352f8-c33e-4dba-a664-d6e17f302507"
+ "NORTHCENTRALUS:20200514T213246Z:aded20bf-d14c-40f7-a45f-1d5a75c0dea5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2523,7 +2523,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:06 GMT"
+ "Thu, 14 May 2020 21:32:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2532,23 +2532,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c35d8e7-5375-46de-b2f7-412073c3439c"
+ "9b065e24-b8b6-47a7-9de2-55bb8cb8b45d"
],
"Accept-Language": [
"en-US"
@@ -2571,13 +2571,13 @@
"11929"
],
"x-ms-request-id": [
- "b5929e19-2abc-4ef3-bc0b-6867fd9a8d61"
+ "e3aac9c2-6377-485a-9f24-4a408faf93ea"
],
"x-ms-correlation-request-id": [
- "b5929e19-2abc-4ef3-bc0b-6867fd9a8d61"
+ "e3aac9c2-6377-485a-9f24-4a408faf93ea"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224607Z:b5929e19-2abc-4ef3-bc0b-6867fd9a8d61"
+ "NORTHCENTRALUS:20200514T213246Z:e3aac9c2-6377-485a-9f24-4a408faf93ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2586,7 +2586,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:06 GMT"
+ "Thu, 14 May 2020 21:32:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2595,23 +2595,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:02.3348681Z\",\r\n \"duration\": \"PT14.8391681S\",\r\n \"trackingId\": \"507197b1-639f-4945-9174-cbac2c0d64b8\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e601718-f011-4ba1-bf99-a6a70064a253"
+ "144d7218-daa4-441c-ae02-5db50ce3f6ee"
],
"Accept-Language": [
"en-US"
@@ -2634,13 +2634,13 @@
"11927"
],
"x-ms-request-id": [
- "98e3f681-11b4-43f9-a996-8aeb97344032"
+ "d0be41a8-c28e-455c-93c5-76123d6e41f1"
],
"x-ms-correlation-request-id": [
- "98e3f681-11b4-43f9-a996-8aeb97344032"
+ "d0be41a8-c28e-455c-93c5-76123d6e41f1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224607Z:98e3f681-11b4-43f9-a996-8aeb97344032"
+ "NORTHCENTRALUS:20200514T213247Z:d0be41a8-c28e-455c-93c5-76123d6e41f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2649,7 +2649,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:06 GMT"
+ "Thu, 14 May 2020 21:32:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2658,23 +2658,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a867f66f-0337-48d5-8a31-7da882c8cd2b"
+ "1f5a068e-d3e3-491b-9ded-5acdcf6ddfaf"
],
"Accept-Language": [
"en-US"
@@ -2697,13 +2697,13 @@
"11925"
],
"x-ms-request-id": [
- "0d27d179-f9be-4270-b315-6447f1587214"
+ "2bb94bca-5997-4269-bfe9-ac84614184b8"
],
"x-ms-correlation-request-id": [
- "0d27d179-f9be-4270-b315-6447f1587214"
+ "2bb94bca-5997-4269-bfe9-ac84614184b8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224608Z:0d27d179-f9be-4270-b315-6447f1587214"
+ "NORTHCENTRALUS:20200514T213247Z:2bb94bca-5997-4269-bfe9-ac84614184b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2712,7 +2712,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:07 GMT"
+ "Thu, 14 May 2020 21:32:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2721,23 +2721,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b335ab42-30f8-472c-a89f-2d5183fae953"
+ "892130c5-875f-4e12-904a-e7b0f28541cb"
],
"Accept-Language": [
"en-US"
@@ -2760,13 +2760,13 @@
"11923"
],
"x-ms-request-id": [
- "135a5eda-d628-4773-86d8-2847ffcc0774"
+ "4cef81ad-d614-4ba9-87e8-153acff75985"
],
"x-ms-correlation-request-id": [
- "135a5eda-d628-4773-86d8-2847ffcc0774"
+ "4cef81ad-d614-4ba9-87e8-153acff75985"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224608Z:135a5eda-d628-4773-86d8-2847ffcc0774"
+ "NORTHCENTRALUS:20200514T213248Z:4cef81ad-d614-4ba9-87e8-153acff75985"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2775,7 +2775,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:07 GMT"
+ "Thu, 14 May 2020 21:32:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2784,23 +2784,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba61b4b4-9770-45a0-b05f-717dd733c379"
+ "80ec5eed-e010-4ce1-b957-327b2b466d92"
],
"Accept-Language": [
"en-US"
@@ -2823,13 +2823,13 @@
"11921"
],
"x-ms-request-id": [
- "c24f429f-4f79-42eb-9ffa-2ddec2aaf25a"
+ "e34954b8-5a8e-4a73-a1f1-e19b4ac9eeaf"
],
"x-ms-correlation-request-id": [
- "c24f429f-4f79-42eb-9ffa-2ddec2aaf25a"
+ "e34954b8-5a8e-4a73-a1f1-e19b4ac9eeaf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224608Z:c24f429f-4f79-42eb-9ffa-2ddec2aaf25a"
+ "NORTHCENTRALUS:20200514T213248Z:e34954b8-5a8e-4a73-a1f1-e19b4ac9eeaf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2838,7 +2838,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:07 GMT"
+ "Thu, 14 May 2020 21:32:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2847,23 +2847,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5494ce5a-d07d-4410-a523-defe139c79d8"
+ "36c7e8d3-ee5f-472f-9b35-b574d4ba061f"
],
"Accept-Language": [
"en-US"
@@ -2886,13 +2886,13 @@
"11919"
],
"x-ms-request-id": [
- "52493129-9e38-4010-8ea9-1a79894fc114"
+ "d0615768-b57e-4552-b00a-f4466d372d32"
],
"x-ms-correlation-request-id": [
- "52493129-9e38-4010-8ea9-1a79894fc114"
+ "d0615768-b57e-4552-b00a-f4466d372d32"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224609Z:52493129-9e38-4010-8ea9-1a79894fc114"
+ "NORTHCENTRALUS:20200514T213248Z:d0615768-b57e-4552-b00a-f4466d372d32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2901,7 +2901,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:08 GMT"
+ "Thu, 14 May 2020 21:32:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2910,23 +2910,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aecdd5ee-9af9-43b5-95d2-704924775bbd"
+ "7827d8bd-9ffd-48dd-b558-7d8c88962c3b"
],
"Accept-Language": [
"en-US"
@@ -2949,13 +2949,13 @@
"11917"
],
"x-ms-request-id": [
- "75d41d70-7f78-4a77-8daa-7559630f64d3"
+ "75c120e7-e697-4b74-a3da-9a5cadd45344"
],
"x-ms-correlation-request-id": [
- "75d41d70-7f78-4a77-8daa-7559630f64d3"
+ "75c120e7-e697-4b74-a3da-9a5cadd45344"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224609Z:75d41d70-7f78-4a77-8daa-7559630f64d3"
+ "NORTHCENTRALUS:20200514T213249Z:75c120e7-e697-4b74-a3da-9a5cadd45344"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2964,7 +2964,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:08 GMT"
+ "Thu, 14 May 2020 21:32:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2973,23 +2973,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4cd26dbc-1911-4b7f-9aa1-7c8d6937e845"
+ "1df1592f-60fe-4374-a120-666315a7addb"
],
"Accept-Language": [
"en-US"
@@ -3012,13 +3012,13 @@
"11915"
],
"x-ms-request-id": [
- "60effab7-aa38-42f9-992e-c4a2d7668b27"
+ "e0ef49a6-ab1b-4d29-b9c8-3f0d42c60686"
],
"x-ms-correlation-request-id": [
- "60effab7-aa38-42f9-992e-c4a2d7668b27"
+ "e0ef49a6-ab1b-4d29-b9c8-3f0d42c60686"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224609Z:60effab7-aa38-42f9-992e-c4a2d7668b27"
+ "NORTHCENTRALUS:20200514T213249Z:e0ef49a6-ab1b-4d29-b9c8-3f0d42c60686"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3027,7 +3027,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:09 GMT"
+ "Thu, 14 May 2020 21:32:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3036,23 +3036,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "edd86c8b-bc35-41cc-862f-4dbb895cc954"
+ "527a222f-3d89-47a2-ac17-d71c5f983a7b"
],
"Accept-Language": [
"en-US"
@@ -3075,13 +3075,13 @@
"11913"
],
"x-ms-request-id": [
- "8ca1aa17-8e75-4f5d-a69d-03c356cdecb0"
+ "448fc66b-b6ab-469f-b1b5-2ada69b03ff3"
],
"x-ms-correlation-request-id": [
- "8ca1aa17-8e75-4f5d-a69d-03c356cdecb0"
+ "448fc66b-b6ab-469f-b1b5-2ada69b03ff3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224610Z:8ca1aa17-8e75-4f5d-a69d-03c356cdecb0"
+ "NORTHCENTRALUS:20200514T213249Z:448fc66b-b6ab-469f-b1b5-2ada69b03ff3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3090,7 +3090,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:09 GMT"
+ "Thu, 14 May 2020 21:32:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3099,23 +3099,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1126cf5c-b9f4-4194-8c27-213f8a050a4f"
+ "8bfa5fd9-b87b-437c-afff-2ca617b99bec"
],
"Accept-Language": [
"en-US"
@@ -3138,13 +3138,13 @@
"11911"
],
"x-ms-request-id": [
- "05db3e7f-e515-4f5b-8576-32da0c9c9878"
+ "f09458c7-c32e-401c-8401-3eac03a6b0db"
],
"x-ms-correlation-request-id": [
- "05db3e7f-e515-4f5b-8576-32da0c9c9878"
+ "f09458c7-c32e-401c-8401-3eac03a6b0db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224610Z:05db3e7f-e515-4f5b-8576-32da0c9c9878"
+ "NORTHCENTRALUS:20200514T213250Z:f09458c7-c32e-401c-8401-3eac03a6b0db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3153,7 +3153,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:09 GMT"
+ "Thu, 14 May 2020 21:32:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3162,23 +3162,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3a98bd7-df88-4253-b5d1-ca4b1bcfe987"
+ "ba212b34-066d-4e13-8a2d-c4bd73cbe7b5"
],
"Accept-Language": [
"en-US"
@@ -3201,13 +3201,13 @@
"11909"
],
"x-ms-request-id": [
- "fe2ba061-25e1-4780-90a0-d197791d6f0a"
+ "f2bb8ab1-d1bf-4eb7-b080-a5f2dad9010a"
],
"x-ms-correlation-request-id": [
- "fe2ba061-25e1-4780-90a0-d197791d6f0a"
+ "f2bb8ab1-d1bf-4eb7-b080-a5f2dad9010a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224611Z:fe2ba061-25e1-4780-90a0-d197791d6f0a"
+ "NORTHCENTRALUS:20200514T213250Z:f2bb8ab1-d1bf-4eb7-b080-a5f2dad9010a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3216,7 +3216,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:10 GMT"
+ "Thu, 14 May 2020 21:32:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3225,23 +3225,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86a461b6-d43a-45b0-8844-bed260a98575"
+ "290f13cc-d877-4dec-8d64-fa9c48eeed0c"
],
"Accept-Language": [
"en-US"
@@ -3264,13 +3264,13 @@
"11907"
],
"x-ms-request-id": [
- "84ca8942-2e36-431e-8a7a-033c2a868309"
+ "f7a35bc0-6ccd-4969-bff3-2596c0ad4f49"
],
"x-ms-correlation-request-id": [
- "84ca8942-2e36-431e-8a7a-033c2a868309"
+ "f7a35bc0-6ccd-4969-bff3-2596c0ad4f49"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224611Z:84ca8942-2e36-431e-8a7a-033c2a868309"
+ "NORTHCENTRALUS:20200514T213251Z:f7a35bc0-6ccd-4969-bff3-2596c0ad4f49"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3279,7 +3279,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:10 GMT"
+ "Thu, 14 May 2020 21:32:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3288,23 +3288,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "529103ca-1289-464c-a249-27dd4876c7a7"
+ "35b14adb-9eb6-4b0e-9672-c26486a06a31"
],
"Accept-Language": [
"en-US"
@@ -3327,13 +3327,13 @@
"11905"
],
"x-ms-request-id": [
- "a54e8b73-64bb-4daf-bc9a-190335881676"
+ "34074de7-61f9-48db-9ab4-cae95627fca3"
],
"x-ms-correlation-request-id": [
- "a54e8b73-64bb-4daf-bc9a-190335881676"
+ "34074de7-61f9-48db-9ab4-cae95627fca3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224611Z:a54e8b73-64bb-4daf-bc9a-190335881676"
+ "NORTHCENTRALUS:20200514T213251Z:34074de7-61f9-48db-9ab4-cae95627fca3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3342,7 +3342,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:10 GMT"
+ "Thu, 14 May 2020 21:32:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3351,23 +3351,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c45dd84c-b97c-41d8-beaf-45a437f09c07"
+ "2c37769c-6bf6-4048-ba1f-7ae522f03109"
],
"Accept-Language": [
"en-US"
@@ -3390,13 +3390,13 @@
"11903"
],
"x-ms-request-id": [
- "fb2057aa-dd52-4185-88bd-a8445f7aacb2"
+ "643b61df-2d96-4580-8ea0-850c27c82125"
],
"x-ms-correlation-request-id": [
- "fb2057aa-dd52-4185-88bd-a8445f7aacb2"
+ "643b61df-2d96-4580-8ea0-850c27c82125"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224612Z:fb2057aa-dd52-4185-88bd-a8445f7aacb2"
+ "NORTHCENTRALUS:20200514T213251Z:643b61df-2d96-4580-8ea0-850c27c82125"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3405,7 +3405,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:11 GMT"
+ "Thu, 14 May 2020 21:32:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3414,23 +3414,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2f1f8ef-e72e-4732-807f-94572827c1dd"
+ "5533a0b3-3caa-47fa-a897-76d2661a1497"
],
"Accept-Language": [
"en-US"
@@ -3453,13 +3453,13 @@
"11901"
],
"x-ms-request-id": [
- "54ef671c-be2b-43fb-ba8e-d1894892d472"
+ "5f4dc890-e110-45a5-a23e-5271d986c99d"
],
"x-ms-correlation-request-id": [
- "54ef671c-be2b-43fb-ba8e-d1894892d472"
+ "5f4dc890-e110-45a5-a23e-5271d986c99d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224612Z:54ef671c-be2b-43fb-ba8e-d1894892d472"
+ "NORTHCENTRALUS:20200514T213252Z:5f4dc890-e110-45a5-a23e-5271d986c99d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3468,7 +3468,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:11 GMT"
+ "Thu, 14 May 2020 21:32:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3477,23 +3477,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a7693ab-2663-47fd-9bb3-89e02a575bf2"
+ "6bb15aef-9289-432e-866a-94409b10230c"
],
"Accept-Language": [
"en-US"
@@ -3516,13 +3516,13 @@
"11899"
],
"x-ms-request-id": [
- "0b3d5ead-e7ef-44f0-b8a4-a8deaab42396"
+ "e4200aa8-44c7-420d-a8c1-a49c46ed7a26"
],
"x-ms-correlation-request-id": [
- "0b3d5ead-e7ef-44f0-b8a4-a8deaab42396"
+ "e4200aa8-44c7-420d-a8c1-a49c46ed7a26"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224612Z:0b3d5ead-e7ef-44f0-b8a4-a8deaab42396"
+ "NORTHCENTRALUS:20200514T213252Z:e4200aa8-44c7-420d-a8c1-a49c46ed7a26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3531,7 +3531,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:12 GMT"
+ "Thu, 14 May 2020 21:32:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3540,23 +3540,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1cbe6e78-4728-437e-8ccc-52bc2b5c7b4a"
+ "f567d551-2c0b-41e2-b120-7fccb00d6c9d"
],
"Accept-Language": [
"en-US"
@@ -3579,13 +3579,13 @@
"11897"
],
"x-ms-request-id": [
- "1b038081-c51a-42c6-b5b5-cacbce5624cb"
+ "c4b1ca14-6c65-45fe-8c72-4e4671112b11"
],
"x-ms-correlation-request-id": [
- "1b038081-c51a-42c6-b5b5-cacbce5624cb"
+ "c4b1ca14-6c65-45fe-8c72-4e4671112b11"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224613Z:1b038081-c51a-42c6-b5b5-cacbce5624cb"
+ "NORTHCENTRALUS:20200514T213253Z:c4b1ca14-6c65-45fe-8c72-4e4671112b11"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3594,7 +3594,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:12 GMT"
+ "Thu, 14 May 2020 21:32:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3603,23 +3603,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b9ed523-50c1-42c9-8d45-06f161d7cf90"
+ "b43d4015-7b9c-4904-8de7-5a9b64b554f9"
],
"Accept-Language": [
"en-US"
@@ -3642,13 +3642,13 @@
"11895"
],
"x-ms-request-id": [
- "c1e55fe7-3b9f-46ee-b920-699e069768ac"
+ "9b0670c4-9f12-42f6-9adf-0b35e14b5798"
],
"x-ms-correlation-request-id": [
- "c1e55fe7-3b9f-46ee-b920-699e069768ac"
+ "9b0670c4-9f12-42f6-9adf-0b35e14b5798"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224613Z:c1e55fe7-3b9f-46ee-b920-699e069768ac"
+ "NORTHCENTRALUS:20200514T213253Z:9b0670c4-9f12-42f6-9adf-0b35e14b5798"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3657,7 +3657,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:12 GMT"
+ "Thu, 14 May 2020 21:32:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3666,23 +3666,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2678582-cbd7-4c03-ab9f-dcfd523da162"
+ "ef5d5dba-98d9-43d7-95db-6dd05857828d"
],
"Accept-Language": [
"en-US"
@@ -3705,13 +3705,13 @@
"11893"
],
"x-ms-request-id": [
- "cfc4ccfe-6840-4100-825c-1b02149300ee"
+ "d7e84fea-2872-4dd8-af08-3aa38e7b4d87"
],
"x-ms-correlation-request-id": [
- "cfc4ccfe-6840-4100-825c-1b02149300ee"
+ "d7e84fea-2872-4dd8-af08-3aa38e7b4d87"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224614Z:cfc4ccfe-6840-4100-825c-1b02149300ee"
+ "NORTHCENTRALUS:20200514T213253Z:d7e84fea-2872-4dd8-af08-3aa38e7b4d87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3720,7 +3720,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:13 GMT"
+ "Thu, 14 May 2020 21:32:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3729,23 +3729,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad40075f-f829-413e-b7dd-8af00449b3a1"
+ "c1d0000d-1f38-4928-9019-fb9c743ab01a"
],
"Accept-Language": [
"en-US"
@@ -3768,13 +3768,13 @@
"11891"
],
"x-ms-request-id": [
- "26481bc5-72a2-4407-98d2-8f27c36399fd"
+ "ec91cd20-43f3-4900-addc-55e9e48abb0d"
],
"x-ms-correlation-request-id": [
- "26481bc5-72a2-4407-98d2-8f27c36399fd"
+ "ec91cd20-43f3-4900-addc-55e9e48abb0d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224614Z:26481bc5-72a2-4407-98d2-8f27c36399fd"
+ "NORTHCENTRALUS:20200514T213254Z:ec91cd20-43f3-4900-addc-55e9e48abb0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3783,7 +3783,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:13 GMT"
+ "Thu, 14 May 2020 21:32:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3792,23 +3792,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3e01d6e-1a95-4b8b-9471-0849b9ad4abb"
+ "82f31dc3-45a9-4d09-99a7-08f9c328a2ed"
],
"Accept-Language": [
"en-US"
@@ -3831,13 +3831,13 @@
"11889"
],
"x-ms-request-id": [
- "7f9aea6b-ed9b-4182-8a53-17a0973fd8dd"
+ "4847d22f-6c29-416e-a96a-01c82f258d00"
],
"x-ms-correlation-request-id": [
- "7f9aea6b-ed9b-4182-8a53-17a0973fd8dd"
+ "4847d22f-6c29-416e-a96a-01c82f258d00"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224614Z:7f9aea6b-ed9b-4182-8a53-17a0973fd8dd"
+ "NORTHCENTRALUS:20200514T213254Z:4847d22f-6c29-416e-a96a-01c82f258d00"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3846,7 +3846,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:13 GMT"
+ "Thu, 14 May 2020 21:32:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3855,23 +3855,23 @@
"-1"
],
"Content-Length": [
- "825"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:07.62341Z\",\r\n \"duration\": \"PT20.12771S\",\r\n \"trackingId\": \"49168f4e-532f-417d-9c68-4456ca96133e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a129cd1a-0556-4f1b-8213-13667b3cf99f"
+ "7fba3711-4a10-477d-9c4c-d28ce6e74ebd"
],
"Accept-Language": [
"en-US"
@@ -3894,13 +3894,13 @@
"11887"
],
"x-ms-request-id": [
- "a5283a11-0b1f-4df2-bc89-f032df3469e8"
+ "3aeb5b61-c023-41f4-8cd6-10f169cde618"
],
"x-ms-correlation-request-id": [
- "a5283a11-0b1f-4df2-bc89-f032df3469e8"
+ "3aeb5b61-c023-41f4-8cd6-10f169cde618"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224615Z:a5283a11-0b1f-4df2-bc89-f032df3469e8"
+ "NORTHCENTRALUS:20200514T213255Z:3aeb5b61-c023-41f4-8cd6-10f169cde618"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3909,7 +3909,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:14 GMT"
+ "Thu, 14 May 2020 21:32:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3918,23 +3918,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d884de8-84e4-4ca8-b92c-957dc68f095d"
+ "91249fbf-1697-4d00-b2c3-39868ef80216"
],
"Accept-Language": [
"en-US"
@@ -3957,13 +3957,13 @@
"11885"
],
"x-ms-request-id": [
- "03cc4af8-413e-450a-b761-1cbae7c14798"
+ "5f3d3afd-bfca-485b-9b34-430fc32b946f"
],
"x-ms-correlation-request-id": [
- "03cc4af8-413e-450a-b761-1cbae7c14798"
+ "5f3d3afd-bfca-485b-9b34-430fc32b946f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224615Z:03cc4af8-413e-450a-b761-1cbae7c14798"
+ "NORTHCENTRALUS:20200514T213255Z:5f3d3afd-bfca-485b-9b34-430fc32b946f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3972,7 +3972,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:14 GMT"
+ "Thu, 14 May 2020 21:32:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3981,23 +3981,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "12"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65981b75-657a-4552-a783-1727ec4e4e11"
+ "b0d94f25-e713-479d-9e70-330c87e8147b"
],
"Accept-Language": [
"en-US"
@@ -4020,13 +4020,13 @@
"11883"
],
"x-ms-request-id": [
- "d5ad38ac-f888-433c-9ae7-26b7631b7656"
+ "4871658c-15ff-4827-bca1-2e47dab49dbb"
],
"x-ms-correlation-request-id": [
- "d5ad38ac-f888-433c-9ae7-26b7631b7656"
+ "4871658c-15ff-4827-bca1-2e47dab49dbb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224615Z:d5ad38ac-f888-433c-9ae7-26b7631b7656"
+ "NORTHCENTRALUS:20200514T213255Z:4871658c-15ff-4827-bca1-2e47dab49dbb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4035,7 +4035,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:15 GMT"
+ "Thu, 14 May 2020 21:32:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4044,23 +4044,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:55.830305Z\",\r\n \"duration\": \"PT22.5249856S\",\r\n \"trackingId\": \"3046cfec-a865-44d4-ba52-6481094f1201\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "871bfc34-ac80-465c-9e5c-3505ee07997c"
+ "9ac134de-79ac-4e63-9575-d98777ccb275"
],
"Accept-Language": [
"en-US"
@@ -4083,13 +4083,13 @@
"11881"
],
"x-ms-request-id": [
- "f546a0ea-e474-4174-bac6-9d41dc9fdaf6"
+ "98c7a1d9-6c1e-494f-aa37-fb6c593ebfb7"
],
"x-ms-correlation-request-id": [
- "f546a0ea-e474-4174-bac6-9d41dc9fdaf6"
+ "98c7a1d9-6c1e-494f-aa37-fb6c593ebfb7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224616Z:f546a0ea-e474-4174-bac6-9d41dc9fdaf6"
+ "NORTHCENTRALUS:20200514T213256Z:98c7a1d9-6c1e-494f-aa37-fb6c593ebfb7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4098,7 +4098,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:15 GMT"
+ "Thu, 14 May 2020 21:32:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4107,23 +4107,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.2124224Z\",\r\n \"duration\": \"PT22.907103S\",\r\n \"trackingId\": \"73571d6c-02cf-4e88-badc-d18147471a77\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "915eebef-1a0b-4928-8054-76fd31382fa2"
+ "38b0af17-b42c-4125-b5c4-75afa03e267f"
],
"Accept-Language": [
"en-US"
@@ -4146,13 +4146,13 @@
"11879"
],
"x-ms-request-id": [
- "b755bf74-6d47-41ad-bb3e-96a7f0f9e886"
+ "69dbf039-6f8b-4fc0-9377-8f09ee3a3343"
],
"x-ms-correlation-request-id": [
- "b755bf74-6d47-41ad-bb3e-96a7f0f9e886"
+ "69dbf039-6f8b-4fc0-9377-8f09ee3a3343"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224616Z:b755bf74-6d47-41ad-bb3e-96a7f0f9e886"
+ "NORTHCENTRALUS:20200514T213256Z:69dbf039-6f8b-4fc0-9377-8f09ee3a3343"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4161,7 +4161,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:15 GMT"
+ "Thu, 14 May 2020 21:32:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4170,23 +4170,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.2124224Z\",\r\n \"duration\": \"PT22.907103S\",\r\n \"trackingId\": \"73571d6c-02cf-4e88-badc-d18147471a77\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c198910-5a64-443c-858a-1b0e7ddd2190"
+ "af4a8e96-dffe-46f8-affd-adf55efc8e6c"
],
"Accept-Language": [
"en-US"
@@ -4209,13 +4209,13 @@
"11877"
],
"x-ms-request-id": [
- "60f5e154-66d3-4146-9b04-66542805f923"
+ "323e00db-1410-482c-95d2-cacffc75d17a"
],
"x-ms-correlation-request-id": [
- "60f5e154-66d3-4146-9b04-66542805f923"
+ "323e00db-1410-482c-95d2-cacffc75d17a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224617Z:60f5e154-66d3-4146-9b04-66542805f923"
+ "NORTHCENTRALUS:20200514T213257Z:323e00db-1410-482c-95d2-cacffc75d17a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4224,7 +4224,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:16 GMT"
+ "Thu, 14 May 2020 21:32:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4233,23 +4233,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.2124224Z\",\r\n \"duration\": \"PT22.907103S\",\r\n \"trackingId\": \"73571d6c-02cf-4e88-badc-d18147471a77\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c105cc70-1e27-4b2e-869d-1e967ecf2759"
+ "f8f7466c-c9b3-41df-8fe1-44f439a72edb"
],
"Accept-Language": [
"en-US"
@@ -4272,13 +4272,13 @@
"11875"
],
"x-ms-request-id": [
- "f7315800-e80f-4d78-81a1-150fef7bfbf0"
+ "bc8db219-cb58-4a10-bdf7-caa91114af3f"
],
"x-ms-correlation-request-id": [
- "f7315800-e80f-4d78-81a1-150fef7bfbf0"
+ "bc8db219-cb58-4a10-bdf7-caa91114af3f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224617Z:f7315800-e80f-4d78-81a1-150fef7bfbf0"
+ "NORTHCENTRALUS:20200514T213257Z:bc8db219-cb58-4a10-bdf7-caa91114af3f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4287,7 +4287,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:16 GMT"
+ "Thu, 14 May 2020 21:32:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4296,23 +4296,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.2124224Z\",\r\n \"duration\": \"PT22.907103S\",\r\n \"trackingId\": \"73571d6c-02cf-4e88-badc-d18147471a77\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3dd302b0-b3a7-4e65-97f0-10f843edac08"
+ "19fdc3ed-48ad-4c3d-8f53-5a6f280fef7d"
],
"Accept-Language": [
"en-US"
@@ -4335,13 +4335,13 @@
"11873"
],
"x-ms-request-id": [
- "29dd598b-b877-481e-8750-a8477e1f11eb"
+ "1ec4bcf0-726e-4402-9413-499e936b7277"
],
"x-ms-correlation-request-id": [
- "29dd598b-b877-481e-8750-a8477e1f11eb"
+ "1ec4bcf0-726e-4402-9413-499e936b7277"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224617Z:29dd598b-b877-481e-8750-a8477e1f11eb"
+ "NORTHCENTRALUS:20200514T213258Z:1ec4bcf0-726e-4402-9413-499e936b7277"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4350,7 +4350,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:16 GMT"
+ "Thu, 14 May 2020 21:32:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4359,23 +4359,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.2124224Z\",\r\n \"duration\": \"PT22.907103S\",\r\n \"trackingId\": \"73571d6c-02cf-4e88-badc-d18147471a77\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "81972d3e-555b-4322-aae7-1d8674dd8cd8"
+ "8518300c-63f3-40e9-ab70-5936608ff61b"
],
"Accept-Language": [
"en-US"
@@ -4398,13 +4398,13 @@
"11871"
],
"x-ms-request-id": [
- "f6735c0b-fd44-4b8a-9b27-96c23931e1f8"
+ "d103bcad-0f3a-461f-bf05-b1d6bf6d1436"
],
"x-ms-correlation-request-id": [
- "f6735c0b-fd44-4b8a-9b27-96c23931e1f8"
+ "d103bcad-0f3a-461f-bf05-b1d6bf6d1436"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224618Z:f6735c0b-fd44-4b8a-9b27-96c23931e1f8"
+ "NORTHCENTRALUS:20200514T213258Z:d103bcad-0f3a-461f-bf05-b1d6bf6d1436"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4413,7 +4413,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:17 GMT"
+ "Thu, 14 May 2020 21:32:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4422,23 +4422,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.2124224Z\",\r\n \"duration\": \"PT22.907103S\",\r\n \"trackingId\": \"73571d6c-02cf-4e88-badc-d18147471a77\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3b7f041-d903-435f-b7b3-af5a31b9c7a7"
+ "a92e2b62-5362-44d6-ab58-3794e4564bcc"
],
"Accept-Language": [
"en-US"
@@ -4461,13 +4461,13 @@
"11869"
],
"x-ms-request-id": [
- "67611f91-ff0e-4c52-b213-2ed143bf5a5f"
+ "c37391d2-9d8d-4af9-9ba1-5a9c6089cfd7"
],
"x-ms-correlation-request-id": [
- "67611f91-ff0e-4c52-b213-2ed143bf5a5f"
+ "c37391d2-9d8d-4af9-9ba1-5a9c6089cfd7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224618Z:67611f91-ff0e-4c52-b213-2ed143bf5a5f"
+ "NORTHCENTRALUS:20200514T213259Z:c37391d2-9d8d-4af9-9ba1-5a9c6089cfd7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4476,7 +4476,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:17 GMT"
+ "Thu, 14 May 2020 21:32:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4485,23 +4485,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.2124224Z\",\r\n \"duration\": \"PT22.907103S\",\r\n \"trackingId\": \"73571d6c-02cf-4e88-badc-d18147471a77\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05f796ae-46e8-407b-a289-20c9ef98c931"
+ "14d43150-4668-4a15-80e4-9e088b1bf5d1"
],
"Accept-Language": [
"en-US"
@@ -4524,13 +4524,13 @@
"11867"
],
"x-ms-request-id": [
- "bc08ea40-84f7-4610-921c-ed898ce31cde"
+ "c3f0ec6c-1048-4d8a-8a6f-bc6e3436bd7e"
],
"x-ms-correlation-request-id": [
- "bc08ea40-84f7-4610-921c-ed898ce31cde"
+ "c3f0ec6c-1048-4d8a-8a6f-bc6e3436bd7e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224618Z:bc08ea40-84f7-4610-921c-ed898ce31cde"
+ "NORTHCENTRALUS:20200514T213259Z:c3f0ec6c-1048-4d8a-8a6f-bc6e3436bd7e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4539,7 +4539,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:17 GMT"
+ "Thu, 14 May 2020 21:32:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4548,23 +4548,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bcfd95b0-6c9a-4dd1-97c5-a610d7e9254e"
+ "cfb1bd1b-f782-4192-9dde-71a8db8f9881"
],
"Accept-Language": [
"en-US"
@@ -4587,13 +4587,13 @@
"11865"
],
"x-ms-request-id": [
- "e77c995e-f46d-4dae-8b1f-cbd028effbf4"
+ "a20c94b5-3ae3-4722-bb30-d30a575ee488"
],
"x-ms-correlation-request-id": [
- "e77c995e-f46d-4dae-8b1f-cbd028effbf4"
+ "a20c94b5-3ae3-4722-bb30-d30a575ee488"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224619Z:e77c995e-f46d-4dae-8b1f-cbd028effbf4"
+ "NORTHCENTRALUS:20200514T213259Z:a20c94b5-3ae3-4722-bb30-d30a575ee488"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4602,7 +4602,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:19 GMT"
+ "Thu, 14 May 2020 21:32:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4611,23 +4611,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "348d7229-6895-48ee-86db-d7a5394c63b7"
+ "16455b73-7c96-4301-a5f8-307ea2d4fe34"
],
"Accept-Language": [
"en-US"
@@ -4650,13 +4650,13 @@
"11863"
],
"x-ms-request-id": [
- "5c4aac85-9ad2-4e74-aad6-34f34ec4456b"
+ "8e71bb2c-4dc2-4027-a825-c60ca40866fd"
],
"x-ms-correlation-request-id": [
- "5c4aac85-9ad2-4e74-aad6-34f34ec4456b"
+ "8e71bb2c-4dc2-4027-a825-c60ca40866fd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224619Z:5c4aac85-9ad2-4e74-aad6-34f34ec4456b"
+ "NORTHCENTRALUS:20200514T213300Z:8e71bb2c-4dc2-4027-a825-c60ca40866fd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4665,7 +4665,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:19 GMT"
+ "Thu, 14 May 2020 21:32:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4674,23 +4674,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53a085c4-9314-449b-be97-4b05602556be"
+ "b9528dbe-31e2-456d-a852-65df315f21a5"
],
"Accept-Language": [
"en-US"
@@ -4713,13 +4713,13 @@
"11861"
],
"x-ms-request-id": [
- "a30d7cc9-8924-41f4-9c78-2aec852ca656"
+ "3fd494e9-2691-4a62-bc82-2c432b480063"
],
"x-ms-correlation-request-id": [
- "a30d7cc9-8924-41f4-9c78-2aec852ca656"
+ "3fd494e9-2691-4a62-bc82-2c432b480063"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224620Z:a30d7cc9-8924-41f4-9c78-2aec852ca656"
+ "NORTHCENTRALUS:20200514T213300Z:3fd494e9-2691-4a62-bc82-2c432b480063"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4728,7 +4728,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:20 GMT"
+ "Thu, 14 May 2020 21:32:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4737,23 +4737,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "21773165-9057-4dfa-afd9-255b7126138a"
+ "3c7f547e-9f9d-4621-84eb-1cb1874643b2"
],
"Accept-Language": [
"en-US"
@@ -4776,13 +4776,13 @@
"11859"
],
"x-ms-request-id": [
- "6f6e8758-c1c6-41f0-a727-611e6eab4e52"
+ "45e6a92c-41e6-42f6-872a-ed0acd926d73"
],
"x-ms-correlation-request-id": [
- "6f6e8758-c1c6-41f0-a727-611e6eab4e52"
+ "45e6a92c-41e6-42f6-872a-ed0acd926d73"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224620Z:6f6e8758-c1c6-41f0-a727-611e6eab4e52"
+ "NORTHCENTRALUS:20200514T213301Z:45e6a92c-41e6-42f6-872a-ed0acd926d73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4791,7 +4791,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:20 GMT"
+ "Thu, 14 May 2020 21:33:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4800,23 +4800,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0f27fdd-d2b9-420a-a1d3-6f2f9b42e285"
+ "ff895fcf-e14a-4cc2-b661-94b064ea1259"
],
"Accept-Language": [
"en-US"
@@ -4839,13 +4839,13 @@
"11857"
],
"x-ms-request-id": [
- "90d8ec24-6ba1-4192-a93d-68e8a01ff4c8"
+ "52b2d155-012c-4ac1-a2d3-893a3bb98efc"
],
"x-ms-correlation-request-id": [
- "90d8ec24-6ba1-4192-a93d-68e8a01ff4c8"
+ "52b2d155-012c-4ac1-a2d3-893a3bb98efc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224620Z:90d8ec24-6ba1-4192-a93d-68e8a01ff4c8"
+ "NORTHCENTRALUS:20200514T213301Z:52b2d155-012c-4ac1-a2d3-893a3bb98efc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4854,7 +4854,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:20 GMT"
+ "Thu, 14 May 2020 21:33:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4863,23 +4863,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f6d5ee64-a47f-4f39-8cfe-e404e5fcaa3f"
+ "5d2680ee-8fab-4e57-96fc-8a3937320bb7"
],
"Accept-Language": [
"en-US"
@@ -4902,13 +4902,13 @@
"11855"
],
"x-ms-request-id": [
- "4d6b6ac0-1693-4e35-8368-682c558880fc"
+ "d21ba75a-e775-4a10-914d-91ecedad254b"
],
"x-ms-correlation-request-id": [
- "4d6b6ac0-1693-4e35-8368-682c558880fc"
+ "d21ba75a-e775-4a10-914d-91ecedad254b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224621Z:4d6b6ac0-1693-4e35-8368-682c558880fc"
+ "NORTHCENTRALUS:20200514T213302Z:d21ba75a-e775-4a10-914d-91ecedad254b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4917,7 +4917,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:21 GMT"
+ "Thu, 14 May 2020 21:33:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4926,23 +4926,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02ef9867-1002-46ae-a22b-c133ce07f40f"
+ "b7393ea4-8092-4588-bbd7-ae9b8763ad78"
],
"Accept-Language": [
"en-US"
@@ -4965,13 +4965,13 @@
"11853"
],
"x-ms-request-id": [
- "2f0169a9-ce4b-4130-85a2-2b996cac9988"
+ "c6484f33-9082-4710-809d-ce9cd47de6af"
],
"x-ms-correlation-request-id": [
- "2f0169a9-ce4b-4130-85a2-2b996cac9988"
+ "c6484f33-9082-4710-809d-ce9cd47de6af"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224621Z:2f0169a9-ce4b-4130-85a2-2b996cac9988"
+ "NORTHCENTRALUS:20200514T213302Z:c6484f33-9082-4710-809d-ce9cd47de6af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4980,7 +4980,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:21 GMT"
+ "Thu, 14 May 2020 21:33:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4989,23 +4989,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5929e8dc-57b2-4c26-b6cf-f9315703b04a"
+ "7a736b23-1a9a-4a86-849e-fd0159b1715e"
],
"Accept-Language": [
"en-US"
@@ -5028,13 +5028,13 @@
"11851"
],
"x-ms-request-id": [
- "5a081e6a-3563-491f-8165-354e4210756a"
+ "63790966-3d71-46fa-b7a4-cd2eddda03f8"
],
"x-ms-correlation-request-id": [
- "5a081e6a-3563-491f-8165-354e4210756a"
+ "63790966-3d71-46fa-b7a4-cd2eddda03f8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224621Z:5a081e6a-3563-491f-8165-354e4210756a"
+ "NORTHCENTRALUS:20200514T213303Z:63790966-3d71-46fa-b7a4-cd2eddda03f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5043,7 +5043,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:21 GMT"
+ "Thu, 14 May 2020 21:33:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5052,23 +5052,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9ea3bcc-0763-4d29-9823-46943a1767a9"
+ "0c2e7b6b-830e-423e-bb2f-6f3c8d17679b"
],
"Accept-Language": [
"en-US"
@@ -5091,13 +5091,13 @@
"11849"
],
"x-ms-request-id": [
- "2d43d970-ae54-45fa-ac4b-7609c1acd253"
+ "d7fc9587-5428-4060-ae40-3883285eb0ed"
],
"x-ms-correlation-request-id": [
- "2d43d970-ae54-45fa-ac4b-7609c1acd253"
+ "d7fc9587-5428-4060-ae40-3883285eb0ed"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224622Z:2d43d970-ae54-45fa-ac4b-7609c1acd253"
+ "NORTHCENTRALUS:20200514T213303Z:d7fc9587-5428-4060-ae40-3883285eb0ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5106,7 +5106,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:22 GMT"
+ "Thu, 14 May 2020 21:33:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5115,23 +5115,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:14.8694502Z\",\r\n \"duration\": \"PT27.3737502S\",\r\n \"trackingId\": \"16c2e95a-54bb-44b5-ad2d-b06b94adf157\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:59.0613744Z\",\r\n \"duration\": \"PT25.756055S\",\r\n \"trackingId\": \"ead54a5b-6981-4c47-ba77-ae515b5df368\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b76532ef-2a2c-4625-acb8-46abbcd0de9c"
+ "8ca375d7-a9ac-4ed1-a57f-1e9899d58fdf"
],
"Accept-Language": [
"en-US"
@@ -5154,13 +5154,13 @@
"11847"
],
"x-ms-request-id": [
- "a5e39ddf-3978-42d3-bda2-1a69b2ed377e"
+ "809ca5b6-96e0-4096-b8bf-128522236cba"
],
"x-ms-correlation-request-id": [
- "a5e39ddf-3978-42d3-bda2-1a69b2ed377e"
+ "809ca5b6-96e0-4096-b8bf-128522236cba"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224622Z:a5e39ddf-3978-42d3-bda2-1a69b2ed377e"
+ "NORTHCENTRALUS:20200514T213303Z:809ca5b6-96e0-4096-b8bf-128522236cba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5169,7 +5169,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:22 GMT"
+ "Thu, 14 May 2020 21:33:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5184,17 +5184,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "65c32748-5f42-4307-982b-287551f460ae"
+ "0585f95d-0fbb-4962-8e47-589ab6b0deb2"
],
"Accept-Language": [
"en-US"
@@ -5217,13 +5217,13 @@
"11845"
],
"x-ms-request-id": [
- "195fcc76-bb37-48dc-8afb-28cb28e19c56"
+ "d852a859-159c-4e4d-addd-82dc8a43dfb6"
],
"x-ms-correlation-request-id": [
- "195fcc76-bb37-48dc-8afb-28cb28e19c56"
+ "d852a859-159c-4e4d-addd-82dc8a43dfb6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224623Z:195fcc76-bb37-48dc-8afb-28cb28e19c56"
+ "NORTHCENTRALUS:20200514T213304Z:d852a859-159c-4e4d-addd-82dc8a43dfb6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5232,7 +5232,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:23 GMT"
+ "Thu, 14 May 2020 21:33:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5247,17 +5247,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e782429d-9b88-45fd-bd4d-efaa14f2c692"
+ "0acbae27-4406-4d3a-b2f8-22d3fb110fde"
],
"Accept-Language": [
"en-US"
@@ -5280,13 +5280,13 @@
"11843"
],
"x-ms-request-id": [
- "10beb621-e5a2-4644-a3cc-cd77051a9fe8"
+ "8a5dc9d1-0bff-4fe4-a282-f06cdbf50636"
],
"x-ms-correlation-request-id": [
- "10beb621-e5a2-4644-a3cc-cd77051a9fe8"
+ "8a5dc9d1-0bff-4fe4-a282-f06cdbf50636"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224623Z:10beb621-e5a2-4644-a3cc-cd77051a9fe8"
+ "NORTHCENTRALUS:20200514T213304Z:8a5dc9d1-0bff-4fe4-a282-f06cdbf50636"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5295,7 +5295,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:23 GMT"
+ "Thu, 14 May 2020 21:33:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5310,17 +5310,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dae07220-dcf2-4ac7-8121-756106a3e665"
+ "6013ed39-167b-45f7-8ac0-d29849090cc0"
],
"Accept-Language": [
"en-US"
@@ -5343,13 +5343,13 @@
"11841"
],
"x-ms-request-id": [
- "c14377a7-948f-4834-b4ce-a7bfe7b018f7"
+ "f21ff200-600d-44f2-9e92-ee2e32d9217f"
],
"x-ms-correlation-request-id": [
- "c14377a7-948f-4834-b4ce-a7bfe7b018f7"
+ "f21ff200-600d-44f2-9e92-ee2e32d9217f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224623Z:c14377a7-948f-4834-b4ce-a7bfe7b018f7"
+ "NORTHCENTRALUS:20200514T213305Z:f21ff200-600d-44f2-9e92-ee2e32d9217f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5358,7 +5358,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:23 GMT"
+ "Thu, 14 May 2020 21:33:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5373,17 +5373,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cac96dab-ae2e-47b9-90b8-693def2b50ee"
+ "ae351f64-b78d-4000-9593-ac0d3e77b92d"
],
"Accept-Language": [
"en-US"
@@ -5406,13 +5406,13 @@
"11839"
],
"x-ms-request-id": [
- "03405501-ad5c-4dc3-b391-93783361ebb7"
+ "a14879fd-5cc4-450b-86a2-427e1892a095"
],
"x-ms-correlation-request-id": [
- "03405501-ad5c-4dc3-b391-93783361ebb7"
+ "a14879fd-5cc4-450b-86a2-427e1892a095"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224624Z:03405501-ad5c-4dc3-b391-93783361ebb7"
+ "NORTHCENTRALUS:20200514T213305Z:a14879fd-5cc4-450b-86a2-427e1892a095"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5421,7 +5421,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:24 GMT"
+ "Thu, 14 May 2020 21:33:04 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5436,17 +5436,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a329dc15-0ba4-4117-ae51-b07f61c5cbfc"
+ "ff962280-06d4-4054-b7f5-620f23c3cab6"
],
"Accept-Language": [
"en-US"
@@ -5469,13 +5469,13 @@
"11837"
],
"x-ms-request-id": [
- "2a4d103e-d254-4da3-b78e-2420e1852db9"
+ "42fa54c2-275b-48a2-b26e-0ea359d76237"
],
"x-ms-correlation-request-id": [
- "2a4d103e-d254-4da3-b78e-2420e1852db9"
+ "42fa54c2-275b-48a2-b26e-0ea359d76237"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224624Z:2a4d103e-d254-4da3-b78e-2420e1852db9"
+ "NORTHCENTRALUS:20200514T213306Z:42fa54c2-275b-48a2-b26e-0ea359d76237"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5484,7 +5484,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:24 GMT"
+ "Thu, 14 May 2020 21:33:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5499,17 +5499,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ce3f4f1-6c38-436c-82d9-edde193dcc9d"
+ "21ce526e-57c7-4589-b7c4-903deccee0c7"
],
"Accept-Language": [
"en-US"
@@ -5532,13 +5532,13 @@
"11835"
],
"x-ms-request-id": [
- "53af1fc5-7f7b-41ee-bff6-f628d11a6102"
+ "d26e7f1a-c7f4-4c6c-9ec6-61c42dc5eb1c"
],
"x-ms-correlation-request-id": [
- "53af1fc5-7f7b-41ee-bff6-f628d11a6102"
+ "d26e7f1a-c7f4-4c6c-9ec6-61c42dc5eb1c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224625Z:53af1fc5-7f7b-41ee-bff6-f628d11a6102"
+ "NORTHCENTRALUS:20200514T213306Z:d26e7f1a-c7f4-4c6c-9ec6-61c42dc5eb1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5547,7 +5547,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:24 GMT"
+ "Thu, 14 May 2020 21:33:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5562,17 +5562,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a53c4127-88ba-4488-942e-586108298dd0"
+ "41531d3a-466a-46bf-a731-a265734d520f"
],
"Accept-Language": [
"en-US"
@@ -5595,13 +5595,13 @@
"11833"
],
"x-ms-request-id": [
- "0333f7a6-6e3a-451b-a70f-fb68e19f1f2b"
+ "720b8b66-8e0f-4a38-b237-d81d1480c063"
],
"x-ms-correlation-request-id": [
- "0333f7a6-6e3a-451b-a70f-fb68e19f1f2b"
+ "720b8b66-8e0f-4a38-b237-d81d1480c063"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224625Z:0333f7a6-6e3a-451b-a70f-fb68e19f1f2b"
+ "NORTHCENTRALUS:20200514T213307Z:720b8b66-8e0f-4a38-b237-d81d1480c063"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5610,7 +5610,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:25 GMT"
+ "Thu, 14 May 2020 21:33:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5625,17 +5625,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75348d66-9c84-480d-8086-ca1755ddeb73"
+ "3b3463b0-0583-487f-a698-8d8ca158c8ce"
],
"Accept-Language": [
"en-US"
@@ -5658,13 +5658,13 @@
"11831"
],
"x-ms-request-id": [
- "f86dfa3c-3e86-4091-8224-0508f28086bb"
+ "1a340ab6-bbef-4b4a-aa5b-4dcb6dbb221c"
],
"x-ms-correlation-request-id": [
- "f86dfa3c-3e86-4091-8224-0508f28086bb"
+ "1a340ab6-bbef-4b4a-aa5b-4dcb6dbb221c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224625Z:f86dfa3c-3e86-4091-8224-0508f28086bb"
+ "NORTHCENTRALUS:20200514T213307Z:1a340ab6-bbef-4b4a-aa5b-4dcb6dbb221c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5673,7 +5673,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:25 GMT"
+ "Thu, 14 May 2020 21:33:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5688,17 +5688,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d4ad1ad-ad31-4456-9dfe-e7008f6115bd"
+ "e6d34ccd-eb91-4ffb-90fa-407054eb523f"
],
"Accept-Language": [
"en-US"
@@ -5721,13 +5721,13 @@
"11829"
],
"x-ms-request-id": [
- "aa17e0b5-04bd-46b2-b984-6df171dbfbec"
+ "d308c8fa-6cd0-4819-ae20-0aff4d9bbb85"
],
"x-ms-correlation-request-id": [
- "aa17e0b5-04bd-46b2-b984-6df171dbfbec"
+ "d308c8fa-6cd0-4819-ae20-0aff4d9bbb85"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224626Z:aa17e0b5-04bd-46b2-b984-6df171dbfbec"
+ "NORTHCENTRALUS:20200514T213308Z:d308c8fa-6cd0-4819-ae20-0aff4d9bbb85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5736,7 +5736,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:25 GMT"
+ "Thu, 14 May 2020 21:33:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5751,17 +5751,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53d30a10-37fa-4502-88d9-e37e688e65f6"
+ "d727ce79-b4b8-48fd-bedb-3a130d48f8e2"
],
"Accept-Language": [
"en-US"
@@ -5784,13 +5784,13 @@
"11827"
],
"x-ms-request-id": [
- "471b2749-f740-4843-8b79-e29e6e040386"
+ "daadb0b5-e020-4f57-ae93-0052b4d99c40"
],
"x-ms-correlation-request-id": [
- "471b2749-f740-4843-8b79-e29e6e040386"
+ "daadb0b5-e020-4f57-ae93-0052b4d99c40"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224626Z:471b2749-f740-4843-8b79-e29e6e040386"
+ "NORTHCENTRALUS:20200514T213308Z:daadb0b5-e020-4f57-ae93-0052b4d99c40"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5799,7 +5799,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:26 GMT"
+ "Thu, 14 May 2020 21:33:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5814,17 +5814,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ffda211-cf2b-4701-ad2b-62b1b9999d38"
+ "d2b224f1-47f6-4c6f-91e6-506c3d373d06"
],
"Accept-Language": [
"en-US"
@@ -5847,13 +5847,13 @@
"11825"
],
"x-ms-request-id": [
- "67812aba-3d75-48c2-abbd-ed5b72d62118"
+ "85a8e863-9144-4600-8a86-306840955638"
],
"x-ms-correlation-request-id": [
- "67812aba-3d75-48c2-abbd-ed5b72d62118"
+ "85a8e863-9144-4600-8a86-306840955638"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224626Z:67812aba-3d75-48c2-abbd-ed5b72d62118"
+ "NORTHCENTRALUS:20200514T213308Z:85a8e863-9144-4600-8a86-306840955638"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5862,7 +5862,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:26 GMT"
+ "Thu, 14 May 2020 21:33:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5877,17 +5877,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.5617033Z\",\r\n \"duration\": \"PT30.2563839S\",\r\n \"trackingId\": \"ced32f12-7af2-4795-9177-a341545053e4\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c40289d-248e-472f-b75a-45ba7104988a"
+ "238bc12e-1b94-42b0-a95a-edd5f1eeb19d"
],
"Accept-Language": [
"en-US"
@@ -5910,13 +5910,13 @@
"11823"
],
"x-ms-request-id": [
- "69fc5b2c-36b0-4f8b-ae52-0d67f479b5b6"
+ "68219216-21d4-4b44-aeef-bf74071da165"
],
"x-ms-correlation-request-id": [
- "69fc5b2c-36b0-4f8b-ae52-0d67f479b5b6"
+ "68219216-21d4-4b44-aeef-bf74071da165"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224627Z:69fc5b2c-36b0-4f8b-ae52-0d67f479b5b6"
+ "NORTHCENTRALUS:20200514T213309Z:68219216-21d4-4b44-aeef-bf74071da165"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5925,7 +5925,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:27 GMT"
+ "Thu, 14 May 2020 21:33:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5940,17 +5940,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "462f83fd-3586-40aa-bebc-2e9ca21e2cbd"
+ "def20ba6-fa1b-48b4-986e-aece883af27e"
],
"Accept-Language": [
"en-US"
@@ -5973,13 +5973,13 @@
"11821"
],
"x-ms-request-id": [
- "c479fbeb-38a4-420f-a692-95e00acfa2f6"
+ "913612c8-e78e-4555-92ec-82b6431860a3"
],
"x-ms-correlation-request-id": [
- "c479fbeb-38a4-420f-a692-95e00acfa2f6"
+ "913612c8-e78e-4555-92ec-82b6431860a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224627Z:c479fbeb-38a4-420f-a692-95e00acfa2f6"
+ "NORTHCENTRALUS:20200514T213309Z:913612c8-e78e-4555-92ec-82b6431860a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5988,7 +5988,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:27 GMT"
+ "Thu, 14 May 2020 21:33:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6003,17 +6003,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9c0d654-000f-440c-9fbc-e1eb4dadc536"
+ "10042c29-62e4-459e-8968-89a7159f7c22"
],
"Accept-Language": [
"en-US"
@@ -6036,13 +6036,13 @@
"11819"
],
"x-ms-request-id": [
- "bb73904f-41af-4e5e-93fa-981ad791f60f"
+ "8622c833-f212-47f4-a08a-dfc8899be445"
],
"x-ms-correlation-request-id": [
- "bb73904f-41af-4e5e-93fa-981ad791f60f"
+ "8622c833-f212-47f4-a08a-dfc8899be445"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224628Z:bb73904f-41af-4e5e-93fa-981ad791f60f"
+ "NORTHCENTRALUS:20200514T213310Z:8622c833-f212-47f4-a08a-dfc8899be445"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6051,7 +6051,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:27 GMT"
+ "Thu, 14 May 2020 21:33:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6066,17 +6066,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e24fa8b9-424f-4eb4-966e-515e44f44b9f"
+ "aa6dae1d-bec0-4077-83e6-66b313731259"
],
"Accept-Language": [
"en-US"
@@ -6099,13 +6099,13 @@
"11817"
],
"x-ms-request-id": [
- "614516fb-3e4c-4ef2-b411-4521e12952df"
+ "b6acaf33-93e8-42dd-b625-d2b6783e2e07"
],
"x-ms-correlation-request-id": [
- "614516fb-3e4c-4ef2-b411-4521e12952df"
+ "b6acaf33-93e8-42dd-b625-d2b6783e2e07"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224628Z:614516fb-3e4c-4ef2-b411-4521e12952df"
+ "NORTHCENTRALUS:20200514T213310Z:b6acaf33-93e8-42dd-b625-d2b6783e2e07"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6114,7 +6114,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:28 GMT"
+ "Thu, 14 May 2020 21:33:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6129,17 +6129,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "09d34071-7e00-4634-8b17-6c07df1db1de"
+ "89ca0abf-e518-4825-ac8d-809ccb248679"
],
"Accept-Language": [
"en-US"
@@ -6162,13 +6162,13 @@
"11815"
],
"x-ms-request-id": [
- "897fc9d7-d7cc-48c9-ab8e-4c1c4a7f5407"
+ "127e265e-f521-4e9f-a4fe-136b5be87d7c"
],
"x-ms-correlation-request-id": [
- "897fc9d7-d7cc-48c9-ab8e-4c1c4a7f5407"
+ "127e265e-f521-4e9f-a4fe-136b5be87d7c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224628Z:897fc9d7-d7cc-48c9-ab8e-4c1c4a7f5407"
+ "NORTHCENTRALUS:20200514T213311Z:127e265e-f521-4e9f-a4fe-136b5be87d7c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6177,7 +6177,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:28 GMT"
+ "Thu, 14 May 2020 21:33:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6192,17 +6192,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4aa3f9b6-92fc-4e3a-b521-7fc111c9ab64"
+ "354b94eb-04d7-4259-b994-15ceac84aa07"
],
"Accept-Language": [
"en-US"
@@ -6225,13 +6225,13 @@
"11813"
],
"x-ms-request-id": [
- "f9b2e883-156c-4d9f-ba64-a422be8c9079"
+ "808b13c4-3155-4127-9dce-aa896a402f8d"
],
"x-ms-correlation-request-id": [
- "f9b2e883-156c-4d9f-ba64-a422be8c9079"
+ "808b13c4-3155-4127-9dce-aa896a402f8d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224629Z:f9b2e883-156c-4d9f-ba64-a422be8c9079"
+ "NORTHCENTRALUS:20200514T213311Z:808b13c4-3155-4127-9dce-aa896a402f8d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6240,7 +6240,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:29 GMT"
+ "Thu, 14 May 2020 21:33:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6255,17 +6255,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "195ad767-0b79-49a6-90b1-5b5ce5fe19a8"
+ "59f0f140-f495-42f9-b9b8-235f0cc0492e"
],
"Accept-Language": [
"en-US"
@@ -6288,13 +6288,13 @@
"11811"
],
"x-ms-request-id": [
- "1497ad9a-3645-4467-b37c-52142c366460"
+ "ed808eda-7303-4bdd-a99a-6b6b23287538"
],
"x-ms-correlation-request-id": [
- "1497ad9a-3645-4467-b37c-52142c366460"
+ "ed808eda-7303-4bdd-a99a-6b6b23287538"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224629Z:1497ad9a-3645-4467-b37c-52142c366460"
+ "NORTHCENTRALUS:20200514T213312Z:ed808eda-7303-4bdd-a99a-6b6b23287538"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6303,7 +6303,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:29 GMT"
+ "Thu, 14 May 2020 21:33:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6318,17 +6318,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fc14bf1-9aff-495b-9568-39a0ec7391eb"
+ "ed060691-6ff7-4cfc-839c-a5244e079885"
],
"Accept-Language": [
"en-US"
@@ -6351,13 +6351,13 @@
"11809"
],
"x-ms-request-id": [
- "5a4d1f01-c92b-485e-acbe-baf37b4c9716"
+ "57e32007-e19e-496e-8406-2c6396b59f3a"
],
"x-ms-correlation-request-id": [
- "5a4d1f01-c92b-485e-acbe-baf37b4c9716"
+ "57e32007-e19e-496e-8406-2c6396b59f3a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224630Z:5a4d1f01-c92b-485e-acbe-baf37b4c9716"
+ "NORTHCENTRALUS:20200514T213312Z:57e32007-e19e-496e-8406-2c6396b59f3a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6366,7 +6366,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:29 GMT"
+ "Thu, 14 May 2020 21:33:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6381,17 +6381,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02cdf76d-e673-4878-818a-41b4e8a0c092"
+ "08564ff1-1717-4cd5-9713-fae270b53abe"
],
"Accept-Language": [
"en-US"
@@ -6414,13 +6414,13 @@
"11807"
],
"x-ms-request-id": [
- "50a8b3f1-34e7-436f-b67b-99b0e115abe9"
+ "b5bf79d7-0af9-490f-8c40-43861040abe8"
],
"x-ms-correlation-request-id": [
- "50a8b3f1-34e7-436f-b67b-99b0e115abe9"
+ "b5bf79d7-0af9-490f-8c40-43861040abe8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224630Z:50a8b3f1-34e7-436f-b67b-99b0e115abe9"
+ "NORTHCENTRALUS:20200514T213312Z:b5bf79d7-0af9-490f-8c40-43861040abe8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6429,7 +6429,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:30 GMT"
+ "Thu, 14 May 2020 21:33:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6444,17 +6444,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd8f3a1d-1754-4c5a-9b98-5d299cdc9fc9"
+ "a0e10141-fdb7-4820-9855-0c55ae1fb06e"
],
"Accept-Language": [
"en-US"
@@ -6477,13 +6477,13 @@
"11805"
],
"x-ms-request-id": [
- "96bf23aa-60a4-4f30-a7fa-79aaea043fa1"
+ "e1ab7f68-e8bc-4cb2-ad07-1c38ab6d45b5"
],
"x-ms-correlation-request-id": [
- "96bf23aa-60a4-4f30-a7fa-79aaea043fa1"
+ "e1ab7f68-e8bc-4cb2-ad07-1c38ab6d45b5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224630Z:96bf23aa-60a4-4f30-a7fa-79aaea043fa1"
+ "NORTHCENTRALUS:20200514T213313Z:e1ab7f68-e8bc-4cb2-ad07-1c38ab6d45b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6492,7 +6492,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:30 GMT"
+ "Thu, 14 May 2020 21:33:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6507,17 +6507,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cafec27e-d889-4b2b-a24e-e0b71690271a"
+ "7c6396c0-5dfe-48c2-948b-0dbc94c98ed3"
],
"Accept-Language": [
"en-US"
@@ -6540,13 +6540,13 @@
"11803"
],
"x-ms-request-id": [
- "284a61ce-3825-46ee-b47d-4e63cc07cbaa"
+ "6f2b1cbf-ed56-4648-8474-da00260d8ad0"
],
"x-ms-correlation-request-id": [
- "284a61ce-3825-46ee-b47d-4e63cc07cbaa"
+ "6f2b1cbf-ed56-4648-8474-da00260d8ad0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224631Z:284a61ce-3825-46ee-b47d-4e63cc07cbaa"
+ "NORTHCENTRALUS:20200514T213313Z:6f2b1cbf-ed56-4648-8474-da00260d8ad0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6555,7 +6555,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:31 GMT"
+ "Thu, 14 May 2020 21:33:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6570,17 +6570,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:22.7139049Z\",\r\n \"duration\": \"PT35.2182049S\",\r\n \"trackingId\": \"96c87ae1-247e-4541-aa36-ce408d5a420e\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1644e1dc-974e-4a29-aca4-925a56fa73e5"
+ "c0c1ed06-5ae7-414c-9afe-bb7f9814c770"
],
"Accept-Language": [
"en-US"
@@ -6603,13 +6603,13 @@
"11801"
],
"x-ms-request-id": [
- "ee17773f-447d-4d66-aa28-338946e4b263"
+ "78d8941b-459e-44d3-8a19-d37cc8394db3"
],
"x-ms-correlation-request-id": [
- "ee17773f-447d-4d66-aa28-338946e4b263"
+ "78d8941b-459e-44d3-8a19-d37cc8394db3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224631Z:ee17773f-447d-4d66-aa28-338946e4b263"
+ "NORTHCENTRALUS:20200514T213314Z:78d8941b-459e-44d3-8a19-d37cc8394db3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6618,7 +6618,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:31 GMT"
+ "Thu, 14 May 2020 21:33:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6627,23 +6627,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.8925256Z\",\r\n \"duration\": \"PT35.5872062S\",\r\n \"trackingId\": \"8d519f5b-712b-44c2-a01f-fd5ab66f84cc\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40ff2a50-342c-4ad3-a870-48b9b8eaf958"
+ "90bad2fb-8d55-4fd9-a962-ec595aa136c2"
],
"Accept-Language": [
"en-US"
@@ -6666,13 +6666,13 @@
"11799"
],
"x-ms-request-id": [
- "6d86e92f-b712-40d1-a62d-c968de5a4789"
+ "2789d97f-52df-43a5-8b10-fa21889406e0"
],
"x-ms-correlation-request-id": [
- "6d86e92f-b712-40d1-a62d-c968de5a4789"
+ "2789d97f-52df-43a5-8b10-fa21889406e0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224632Z:6d86e92f-b712-40d1-a62d-c968de5a4789"
+ "NORTHCENTRALUS:20200514T213314Z:2789d97f-52df-43a5-8b10-fa21889406e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6681,7 +6681,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:31 GMT"
+ "Thu, 14 May 2020 21:33:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6690,23 +6690,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d651b9a-dd77-4eec-889c-bdf9a6e9eac3"
+ "3ffc9ce7-28c3-4394-929a-8aabe7e32e8b"
],
"Accept-Language": [
"en-US"
@@ -6729,13 +6729,13 @@
"11797"
],
"x-ms-request-id": [
- "0fd020e6-f3f9-4f04-a4c2-452318ceb376"
+ "1addf219-ba13-412a-afd2-3e81ec89562e"
],
"x-ms-correlation-request-id": [
- "0fd020e6-f3f9-4f04-a4c2-452318ceb376"
+ "1addf219-ba13-412a-afd2-3e81ec89562e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224632Z:0fd020e6-f3f9-4f04-a4c2-452318ceb376"
+ "NORTHCENTRALUS:20200514T213315Z:1addf219-ba13-412a-afd2-3e81ec89562e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6744,7 +6744,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:32 GMT"
+ "Thu, 14 May 2020 21:33:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6753,23 +6753,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a6cf9c9-910a-4e11-9340-2b3a31c15eac"
+ "fe232b86-5c49-42fc-a479-eb34225b7a53"
],
"Accept-Language": [
"en-US"
@@ -6792,13 +6792,13 @@
"11795"
],
"x-ms-request-id": [
- "28b092ed-5a40-4336-9e5e-dd61b0bad08f"
+ "eb69b46a-a184-4c87-a7f3-6325b28e24a3"
],
"x-ms-correlation-request-id": [
- "28b092ed-5a40-4336-9e5e-dd61b0bad08f"
+ "eb69b46a-a184-4c87-a7f3-6325b28e24a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224632Z:28b092ed-5a40-4336-9e5e-dd61b0bad08f"
+ "NORTHCENTRALUS:20200514T213315Z:eb69b46a-a184-4c87-a7f3-6325b28e24a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6807,7 +6807,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:32 GMT"
+ "Thu, 14 May 2020 21:33:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6816,23 +6816,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0dbce68f-4b91-4850-94c9-bb7a61b2c277"
+ "75ac50f0-9afe-4be8-ab3c-c1474f105510"
],
"Accept-Language": [
"en-US"
@@ -6855,13 +6855,13 @@
"11793"
],
"x-ms-request-id": [
- "f7f9d8a9-06a9-4802-a3dc-7baa54228253"
+ "52104546-f523-47b2-a289-b5b6de454c7b"
],
"x-ms-correlation-request-id": [
- "f7f9d8a9-06a9-4802-a3dc-7baa54228253"
+ "52104546-f523-47b2-a289-b5b6de454c7b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224633Z:f7f9d8a9-06a9-4802-a3dc-7baa54228253"
+ "NORTHCENTRALUS:20200514T213316Z:52104546-f523-47b2-a289-b5b6de454c7b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6870,7 +6870,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:32 GMT"
+ "Thu, 14 May 2020 21:33:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6879,23 +6879,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f65cd63b-2aa4-448e-8ae9-34e9ae6e7a3f"
+ "b6e8a58c-21c3-47cd-a2c6-e1f2915a4631"
],
"Accept-Language": [
"en-US"
@@ -6918,13 +6918,13 @@
"11791"
],
"x-ms-request-id": [
- "ab2f9e90-394e-4054-ad6a-e200a3a52d7f"
+ "be978883-6e6f-444f-b2f5-3e2f2ddcbf9d"
],
"x-ms-correlation-request-id": [
- "ab2f9e90-394e-4054-ad6a-e200a3a52d7f"
+ "be978883-6e6f-444f-b2f5-3e2f2ddcbf9d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224633Z:ab2f9e90-394e-4054-ad6a-e200a3a52d7f"
+ "NORTHCENTRALUS:20200514T213316Z:be978883-6e6f-444f-b2f5-3e2f2ddcbf9d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6933,7 +6933,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:33 GMT"
+ "Thu, 14 May 2020 21:33:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -6942,23 +6942,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70d3cdd8-625b-4aab-9464-bda2d1f63a6f"
+ "b6c2f713-5bd4-481d-ab07-c1809291a535"
],
"Accept-Language": [
"en-US"
@@ -6981,13 +6981,13 @@
"11789"
],
"x-ms-request-id": [
- "bdd4c520-6b9d-4a35-b5cc-24183b4926f7"
+ "3758dd63-5c93-4345-8915-7ac1bda2985f"
],
"x-ms-correlation-request-id": [
- "bdd4c520-6b9d-4a35-b5cc-24183b4926f7"
+ "3758dd63-5c93-4345-8915-7ac1bda2985f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224633Z:bdd4c520-6b9d-4a35-b5cc-24183b4926f7"
+ "NORTHCENTRALUS:20200514T213316Z:3758dd63-5c93-4345-8915-7ac1bda2985f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6996,7 +6996,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:33 GMT"
+ "Thu, 14 May 2020 21:33:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7005,23 +7005,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c7cb4dc-5569-44d0-90dc-2b3faeef26c7"
+ "bb5a235e-434f-483c-8f50-ad055ca4f18d"
],
"Accept-Language": [
"en-US"
@@ -7044,13 +7044,13 @@
"11787"
],
"x-ms-request-id": [
- "4089cfb2-6e14-4175-a0bf-a5e18f0ade40"
+ "4434b766-d673-4e56-9c86-e8a342cc2398"
],
"x-ms-correlation-request-id": [
- "4089cfb2-6e14-4175-a0bf-a5e18f0ade40"
+ "4434b766-d673-4e56-9c86-e8a342cc2398"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224634Z:4089cfb2-6e14-4175-a0bf-a5e18f0ade40"
+ "NORTHCENTRALUS:20200514T213317Z:4434b766-d673-4e56-9c86-e8a342cc2398"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7059,7 +7059,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:34 GMT"
+ "Thu, 14 May 2020 21:33:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7068,23 +7068,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ec559e4-e625-4888-b09a-fd31a3b4ba7f"
+ "e5c1efd4-336a-48e1-95b1-e45fcb63420e"
],
"Accept-Language": [
"en-US"
@@ -7107,13 +7107,13 @@
"11785"
],
"x-ms-request-id": [
- "1aa17602-c060-4201-a7df-3f850e2d57ef"
+ "f4b2d7cd-c7f0-41a2-90bd-e78aab51b2a2"
],
"x-ms-correlation-request-id": [
- "1aa17602-c060-4201-a7df-3f850e2d57ef"
+ "f4b2d7cd-c7f0-41a2-90bd-e78aab51b2a2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224634Z:1aa17602-c060-4201-a7df-3f850e2d57ef"
+ "NORTHCENTRALUS:20200514T213317Z:f4b2d7cd-c7f0-41a2-90bd-e78aab51b2a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7122,7 +7122,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:34 GMT"
+ "Thu, 14 May 2020 21:33:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7131,23 +7131,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "48bacd6d-ded3-435b-b418-980a1730f789"
+ "ad65965d-9b91-497e-ac86-b1c8aa8d0f01"
],
"Accept-Language": [
"en-US"
@@ -7170,13 +7170,13 @@
"11783"
],
"x-ms-request-id": [
- "34f256d8-eb97-428a-86ef-f8a27dca3c45"
+ "2c694a51-a1f9-453c-94b8-0566b8e71cbb"
],
"x-ms-correlation-request-id": [
- "34f256d8-eb97-428a-86ef-f8a27dca3c45"
+ "2c694a51-a1f9-453c-94b8-0566b8e71cbb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224635Z:34f256d8-eb97-428a-86ef-f8a27dca3c45"
+ "NORTHCENTRALUS:20200514T213318Z:2c694a51-a1f9-453c-94b8-0566b8e71cbb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7185,7 +7185,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:34 GMT"
+ "Thu, 14 May 2020 21:33:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7194,23 +7194,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "81e6c44c-ac63-4777-aae2-0afa97733b63"
+ "5a02af57-b23c-4085-9597-36540041dea1"
],
"Accept-Language": [
"en-US"
@@ -7233,13 +7233,13 @@
"11781"
],
"x-ms-request-id": [
- "e301e4c9-c3c6-4ff2-ad7a-3c2524900986"
+ "2ffd7134-3ec4-4296-b1a3-665bb5cbfc1e"
],
"x-ms-correlation-request-id": [
- "e301e4c9-c3c6-4ff2-ad7a-3c2524900986"
+ "2ffd7134-3ec4-4296-b1a3-665bb5cbfc1e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224635Z:e301e4c9-c3c6-4ff2-ad7a-3c2524900986"
+ "NORTHCENTRALUS:20200514T213318Z:2ffd7134-3ec4-4296-b1a3-665bb5cbfc1e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7248,7 +7248,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:35 GMT"
+ "Thu, 14 May 2020 21:33:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7257,23 +7257,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a65556b8-8a6c-4a49-b97f-a3efa44ed4e1"
+ "240fe4e6-8b44-48bb-9837-b8666d1f6142"
],
"Accept-Language": [
"en-US"
@@ -7296,13 +7296,13 @@
"11779"
],
"x-ms-request-id": [
- "54362c7d-0263-41a5-bc53-4fbeaaa37ad1"
+ "14c57e39-a38e-4010-8d82-e39399f57f43"
],
"x-ms-correlation-request-id": [
- "54362c7d-0263-41a5-bc53-4fbeaaa37ad1"
+ "14c57e39-a38e-4010-8d82-e39399f57f43"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224635Z:54362c7d-0263-41a5-bc53-4fbeaaa37ad1"
+ "NORTHCENTRALUS:20200514T213319Z:14c57e39-a38e-4010-8d82-e39399f57f43"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7311,7 +7311,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:35 GMT"
+ "Thu, 14 May 2020 21:33:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7320,23 +7320,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f1adc066-5d11-4c7a-9d63-369dfedbcc1a"
+ "c29c89c3-9efd-4d79-96d8-d73da43f3db0"
],
"Accept-Language": [
"en-US"
@@ -7359,13 +7359,13 @@
"11777"
],
"x-ms-request-id": [
- "9908e23d-7803-46d2-af44-00658eafb13c"
+ "d34caf6d-e47a-4417-93d9-a7faa6563f1a"
],
"x-ms-correlation-request-id": [
- "9908e23d-7803-46d2-af44-00658eafb13c"
+ "d34caf6d-e47a-4417-93d9-a7faa6563f1a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224636Z:9908e23d-7803-46d2-af44-00658eafb13c"
+ "NORTHCENTRALUS:20200514T213319Z:d34caf6d-e47a-4417-93d9-a7faa6563f1a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7374,7 +7374,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:35 GMT"
+ "Thu, 14 May 2020 21:33:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7383,23 +7383,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e9b49a5-3757-4a3e-a458-b4da116b119f"
+ "1e6f2c6b-0c83-459c-bfa3-f7efaed555d0"
],
"Accept-Language": [
"en-US"
@@ -7422,13 +7422,13 @@
"11775"
],
"x-ms-request-id": [
- "5fefff32-2ec0-49b9-bdc2-602dc6771110"
+ "aa02beb4-c62e-4d22-b16c-620c443fca0d"
],
"x-ms-correlation-request-id": [
- "5fefff32-2ec0-49b9-bdc2-602dc6771110"
+ "aa02beb4-c62e-4d22-b16c-620c443fca0d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224636Z:5fefff32-2ec0-49b9-bdc2-602dc6771110"
+ "NORTHCENTRALUS:20200514T213320Z:aa02beb4-c62e-4d22-b16c-620c443fca0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7437,7 +7437,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:36 GMT"
+ "Thu, 14 May 2020 21:33:19 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7446,23 +7446,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af79fbe5-21b0-4cb8-9680-6ecd4050cb5b"
+ "36098588-e56a-492a-a543-6fc51e246d0a"
],
"Accept-Language": [
"en-US"
@@ -7485,13 +7485,13 @@
"11773"
],
"x-ms-request-id": [
- "bc1081a9-fdb9-4271-b3e1-5a18243da5b5"
+ "d100cb7d-f4b2-4e3d-ab8d-367add570d06"
],
"x-ms-correlation-request-id": [
- "bc1081a9-fdb9-4271-b3e1-5a18243da5b5"
+ "d100cb7d-f4b2-4e3d-ab8d-367add570d06"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224637Z:bc1081a9-fdb9-4271-b3e1-5a18243da5b5"
+ "NORTHCENTRALUS:20200514T213320Z:d100cb7d-f4b2-4e3d-ab8d-367add570d06"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7500,7 +7500,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:36 GMT"
+ "Thu, 14 May 2020 21:33:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7509,23 +7509,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d17aee4-2545-4451-84ed-86dc60584af2"
+ "d03a9236-3c4a-43ee-82c5-75d9c60377ad"
],
"Accept-Language": [
"en-US"
@@ -7548,13 +7548,13 @@
"11771"
],
"x-ms-request-id": [
- "26935ae7-7ea0-49a5-b1b3-a0f5f191c0b9"
+ "b4d749f2-c44f-4026-8f2c-19ae5b7fae2e"
],
"x-ms-correlation-request-id": [
- "26935ae7-7ea0-49a5-b1b3-a0f5f191c0b9"
+ "b4d749f2-c44f-4026-8f2c-19ae5b7fae2e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224637Z:26935ae7-7ea0-49a5-b1b3-a0f5f191c0b9"
+ "NORTHCENTRALUS:20200514T213320Z:b4d749f2-c44f-4026-8f2c-19ae5b7fae2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7563,7 +7563,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:37 GMT"
+ "Thu, 14 May 2020 21:33:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7572,23 +7572,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:14.6244368Z\",\r\n \"duration\": \"PT41.3191174S\",\r\n \"trackingId\": \"bbb7f3c5-7763-4aed-8d0c-dcc965b89b5f\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "339381a1-8966-43ac-b424-2f43d729dc16"
+ "9a2aa0e2-5e97-4ac8-a327-a6f6343261d1"
],
"Accept-Language": [
"en-US"
@@ -7611,13 +7611,13 @@
"11769"
],
"x-ms-request-id": [
- "add81f8e-ac2b-493c-b774-803eb78385a8"
+ "ea028fda-1c23-484f-897f-0fbaa44f1aa4"
],
"x-ms-correlation-request-id": [
- "add81f8e-ac2b-493c-b774-803eb78385a8"
+ "ea028fda-1c23-484f-897f-0fbaa44f1aa4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224637Z:add81f8e-ac2b-493c-b774-803eb78385a8"
+ "NORTHCENTRALUS:20200514T213321Z:ea028fda-1c23-484f-897f-0fbaa44f1aa4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7626,7 +7626,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:37 GMT"
+ "Thu, 14 May 2020 21:33:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7635,23 +7635,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f574df1-a610-44d4-be4b-bd3a389e1e77"
+ "c2287ba4-9436-48fc-82d5-2604a14ecd8f"
],
"Accept-Language": [
"en-US"
@@ -7674,13 +7674,13 @@
"11767"
],
"x-ms-request-id": [
- "e2d3dfc2-7271-4546-b94b-faba3e23e081"
+ "c1582b17-a6b7-4694-8dc8-2f9c684015d5"
],
"x-ms-correlation-request-id": [
- "e2d3dfc2-7271-4546-b94b-faba3e23e081"
+ "c1582b17-a6b7-4694-8dc8-2f9c684015d5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224638Z:e2d3dfc2-7271-4546-b94b-faba3e23e081"
+ "NORTHCENTRALUS:20200514T213321Z:c1582b17-a6b7-4694-8dc8-2f9c684015d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7689,7 +7689,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:37 GMT"
+ "Thu, 14 May 2020 21:33:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7698,23 +7698,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1be6b72-2295-48ae-9eaf-b5d70a336179"
+ "e3e7a2cd-64ab-4d73-ab40-aa1dc6d9bfc5"
],
"Accept-Language": [
"en-US"
@@ -7737,13 +7737,13 @@
"11765"
],
"x-ms-request-id": [
- "33c95ca9-2725-47f2-8ecd-6f6faa94c4c9"
+ "35db6a28-e396-4c83-9a47-e6263fda3b70"
],
"x-ms-correlation-request-id": [
- "33c95ca9-2725-47f2-8ecd-6f6faa94c4c9"
+ "35db6a28-e396-4c83-9a47-e6263fda3b70"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224638Z:33c95ca9-2725-47f2-8ecd-6f6faa94c4c9"
+ "NORTHCENTRALUS:20200514T213322Z:35db6a28-e396-4c83-9a47-e6263fda3b70"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7752,7 +7752,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:38 GMT"
+ "Thu, 14 May 2020 21:33:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7761,23 +7761,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54a91347-1d6d-447d-91a3-120a6999535b"
+ "fcedcba9-215f-4796-aaa5-313fd9f2e73d"
],
"Accept-Language": [
"en-US"
@@ -7800,13 +7800,13 @@
"11763"
],
"x-ms-request-id": [
- "34915d01-8edf-4e10-89c5-52c528acfd83"
+ "cc6a1344-9980-4a0d-bf5d-3d2cfd307e9c"
],
"x-ms-correlation-request-id": [
- "34915d01-8edf-4e10-89c5-52c528acfd83"
+ "cc6a1344-9980-4a0d-bf5d-3d2cfd307e9c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224639Z:34915d01-8edf-4e10-89c5-52c528acfd83"
+ "NORTHCENTRALUS:20200514T213322Z:cc6a1344-9980-4a0d-bf5d-3d2cfd307e9c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7815,7 +7815,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:38 GMT"
+ "Thu, 14 May 2020 21:33:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7824,23 +7824,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "567ea1de-858e-4254-b389-a39d8f55c3fc"
+ "8bf0cee8-6b83-4ce0-89f7-dddabd7e6071"
],
"Accept-Language": [
"en-US"
@@ -7863,13 +7863,13 @@
"11761"
],
"x-ms-request-id": [
- "d4d85648-d1b6-4d17-889a-2836fe864113"
+ "9b59e9d5-8da6-4396-ad73-c7d5b551db5e"
],
"x-ms-correlation-request-id": [
- "d4d85648-d1b6-4d17-889a-2836fe864113"
+ "9b59e9d5-8da6-4396-ad73-c7d5b551db5e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224639Z:d4d85648-d1b6-4d17-889a-2836fe864113"
+ "NORTHCENTRALUS:20200514T213323Z:9b59e9d5-8da6-4396-ad73-c7d5b551db5e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7878,7 +7878,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:39 GMT"
+ "Thu, 14 May 2020 21:33:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7887,23 +7887,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "abee0ffe-7d75-418f-a2af-ab69093645d3"
+ "854f4351-7c3a-4a55-9606-9fbef7a876a1"
],
"Accept-Language": [
"en-US"
@@ -7926,13 +7926,13 @@
"11759"
],
"x-ms-request-id": [
- "05dae736-a4b8-45ba-a692-ee8887318db4"
+ "f7d45c1d-a9f1-405f-baa4-3a1593548845"
],
"x-ms-correlation-request-id": [
- "05dae736-a4b8-45ba-a692-ee8887318db4"
+ "f7d45c1d-a9f1-405f-baa4-3a1593548845"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224639Z:05dae736-a4b8-45ba-a692-ee8887318db4"
+ "NORTHCENTRALUS:20200514T213323Z:f7d45c1d-a9f1-405f-baa4-3a1593548845"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -7941,7 +7941,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:39 GMT"
+ "Thu, 14 May 2020 21:33:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -7950,23 +7950,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa8294f8-5b54-4f7d-a7e4-e58a77bfd312"
+ "ba8f6cba-e0f1-4c68-977a-386c868b5a7e"
],
"Accept-Language": [
"en-US"
@@ -7989,13 +7989,13 @@
"11757"
],
"x-ms-request-id": [
- "197b7ea0-0160-43b8-bd0e-535c013767d1"
+ "239d9e54-b05b-48ad-be14-eeadfa450950"
],
"x-ms-correlation-request-id": [
- "197b7ea0-0160-43b8-bd0e-535c013767d1"
+ "239d9e54-b05b-48ad-be14-eeadfa450950"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224640Z:197b7ea0-0160-43b8-bd0e-535c013767d1"
+ "NORTHCENTRALUS:20200514T213323Z:239d9e54-b05b-48ad-be14-eeadfa450950"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8004,7 +8004,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:39 GMT"
+ "Thu, 14 May 2020 21:33:23 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8013,23 +8013,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b92fb19d-bc8d-408e-b16c-70cc1f073e4e"
+ "3dfb7578-6e39-4d44-9435-d980ddc59c5b"
],
"Accept-Language": [
"en-US"
@@ -8052,13 +8052,13 @@
"11755"
],
"x-ms-request-id": [
- "308fcce1-5c30-4339-8f65-98ccb63af27f"
+ "9abda86e-94dd-43bd-a32c-942fa4fcaed8"
],
"x-ms-correlation-request-id": [
- "308fcce1-5c30-4339-8f65-98ccb63af27f"
+ "9abda86e-94dd-43bd-a32c-942fa4fcaed8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224640Z:308fcce1-5c30-4339-8f65-98ccb63af27f"
+ "NORTHCENTRALUS:20200514T213324Z:9abda86e-94dd-43bd-a32c-942fa4fcaed8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8067,7 +8067,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:40 GMT"
+ "Thu, 14 May 2020 21:33:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8076,23 +8076,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "daaef8fe-6dbf-4687-b938-87d0dc524ecc"
+ "76dbec44-d10b-457f-874c-eb3c9b96edfc"
],
"Accept-Language": [
"en-US"
@@ -8115,13 +8115,13 @@
"11753"
],
"x-ms-request-id": [
- "f08e29cb-97f0-4080-885e-4bcb78a1a9aa"
+ "2400fcfc-330a-4712-b0c4-1cc5fbf13069"
],
"x-ms-correlation-request-id": [
- "f08e29cb-97f0-4080-885e-4bcb78a1a9aa"
+ "2400fcfc-330a-4712-b0c4-1cc5fbf13069"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224640Z:f08e29cb-97f0-4080-885e-4bcb78a1a9aa"
+ "NORTHCENTRALUS:20200514T213324Z:2400fcfc-330a-4712-b0c4-1cc5fbf13069"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8130,7 +8130,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:40 GMT"
+ "Thu, 14 May 2020 21:33:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8139,23 +8139,23 @@
"-1"
],
"Content-Length": [
- "827"
+ "829"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:31.499727Z\",\r\n \"duration\": \"PT44.004027S\",\r\n \"trackingId\": \"41828823-391b-4e21-b4ec-ce8a6b103b35\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0365d0f6-f033-4c9e-81ad-2a5b56b4c7f1"
+ "873711c2-f09f-468b-bc13-68eac206d2d2"
],
"Accept-Language": [
"en-US"
@@ -8178,13 +8178,13 @@
"11751"
],
"x-ms-request-id": [
- "9a606e1c-43da-41de-8cee-f2e0c1125870"
+ "dfd74afe-ff61-4c3c-ad25-8aceb7e1173e"
],
"x-ms-correlation-request-id": [
- "9a606e1c-43da-41de-8cee-f2e0c1125870"
+ "dfd74afe-ff61-4c3c-ad25-8aceb7e1173e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224641Z:9a606e1c-43da-41de-8cee-f2e0c1125870"
+ "NORTHCENTRALUS:20200514T213325Z:dfd74afe-ff61-4c3c-ad25-8aceb7e1173e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8193,7 +8193,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:40 GMT"
+ "Thu, 14 May 2020 21:33:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8208,17 +8208,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e9d3154-4f34-4431-b98f-f3a5b45cd185"
+ "46a6b459-a90b-4467-8d75-2080b4a038fe"
],
"Accept-Language": [
"en-US"
@@ -8241,13 +8241,13 @@
"11749"
],
"x-ms-request-id": [
- "e40fe213-8823-4240-a8d7-ca4ee7fe20fc"
+ "ab2502e2-1c62-453e-bf08-09933faa07d8"
],
"x-ms-correlation-request-id": [
- "e40fe213-8823-4240-a8d7-ca4ee7fe20fc"
+ "ab2502e2-1c62-453e-bf08-09933faa07d8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224641Z:e40fe213-8823-4240-a8d7-ca4ee7fe20fc"
+ "NORTHCENTRALUS:20200514T213325Z:ab2502e2-1c62-453e-bf08-09933faa07d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8256,7 +8256,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:41 GMT"
+ "Thu, 14 May 2020 21:33:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8271,17 +8271,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2080a220-2708-4dfd-b2b7-5c9b1ca959f5"
+ "cf14a0bc-fb5a-4539-a337-fb932cb10770"
],
"Accept-Language": [
"en-US"
@@ -8304,13 +8304,13 @@
"11747"
],
"x-ms-request-id": [
- "c1f6b8d2-3330-4a34-b46e-c61fcfb64b13"
+ "27af0bfd-8f37-4afb-8f95-932b103b4ac1"
],
"x-ms-correlation-request-id": [
- "c1f6b8d2-3330-4a34-b46e-c61fcfb64b13"
+ "27af0bfd-8f37-4afb-8f95-932b103b4ac1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224642Z:c1f6b8d2-3330-4a34-b46e-c61fcfb64b13"
+ "NORTHCENTRALUS:20200514T213326Z:27af0bfd-8f37-4afb-8f95-932b103b4ac1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8319,7 +8319,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:41 GMT"
+ "Thu, 14 May 2020 21:33:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8334,17 +8334,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97c96af8-06c3-4e29-87b1-0ac005a6b42d"
+ "df35ad71-9635-4790-a629-ad6d37742ebb"
],
"Accept-Language": [
"en-US"
@@ -8367,13 +8367,13 @@
"11745"
],
"x-ms-request-id": [
- "54146aa1-893a-4234-91eb-0356d109d69f"
+ "36ba9360-b8b8-4fd2-9f06-b0fe9b7c7ca5"
],
"x-ms-correlation-request-id": [
- "54146aa1-893a-4234-91eb-0356d109d69f"
+ "36ba9360-b8b8-4fd2-9f06-b0fe9b7c7ca5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224642Z:54146aa1-893a-4234-91eb-0356d109d69f"
+ "NORTHCENTRALUS:20200514T213326Z:36ba9360-b8b8-4fd2-9f06-b0fe9b7c7ca5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8382,7 +8382,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:41 GMT"
+ "Thu, 14 May 2020 21:33:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8397,17 +8397,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd334f2c-f809-4111-89bc-4977da26eba1"
+ "5da6191e-1321-450b-8c3b-732724e7fe4c"
],
"Accept-Language": [
"en-US"
@@ -8430,13 +8430,13 @@
"11743"
],
"x-ms-request-id": [
- "b1734ae0-84dc-4de7-ab5d-565d90b01074"
+ "66c65cf4-c815-47dc-a48e-1663df6e7bf9"
],
"x-ms-correlation-request-id": [
- "b1734ae0-84dc-4de7-ab5d-565d90b01074"
+ "66c65cf4-c815-47dc-a48e-1663df6e7bf9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224642Z:b1734ae0-84dc-4de7-ab5d-565d90b01074"
+ "NORTHCENTRALUS:20200514T213327Z:66c65cf4-c815-47dc-a48e-1663df6e7bf9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8445,7 +8445,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:42 GMT"
+ "Thu, 14 May 2020 21:33:26 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8460,17 +8460,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f867d6d-48b8-4677-905f-e2f542a93d42"
+ "543711cd-abc1-4c01-822f-b0fe2228656a"
],
"Accept-Language": [
"en-US"
@@ -8493,13 +8493,13 @@
"11741"
],
"x-ms-request-id": [
- "3e4630b1-7371-4356-898e-4bdb268a89ea"
+ "1ba6a211-0e54-4c73-87a1-e6caffc73fc0"
],
"x-ms-correlation-request-id": [
- "3e4630b1-7371-4356-898e-4bdb268a89ea"
+ "1ba6a211-0e54-4c73-87a1-e6caffc73fc0"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224643Z:3e4630b1-7371-4356-898e-4bdb268a89ea"
+ "NORTHCENTRALUS:20200514T213327Z:1ba6a211-0e54-4c73-87a1-e6caffc73fc0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8508,7 +8508,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:42 GMT"
+ "Thu, 14 May 2020 21:33:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8523,17 +8523,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50f4f319-a643-4417-92c6-1c2c822f27a1"
+ "8bf53494-fb0a-4e83-b418-91717b633853"
],
"Accept-Language": [
"en-US"
@@ -8556,13 +8556,13 @@
"11739"
],
"x-ms-request-id": [
- "bf060d67-a398-4f6b-98bb-02e75c0e985c"
+ "cf63ab92-4e1a-4d7f-ad4e-70867319580a"
],
"x-ms-correlation-request-id": [
- "bf060d67-a398-4f6b-98bb-02e75c0e985c"
+ "cf63ab92-4e1a-4d7f-ad4e-70867319580a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224643Z:bf060d67-a398-4f6b-98bb-02e75c0e985c"
+ "NORTHCENTRALUS:20200514T213328Z:cf63ab92-4e1a-4d7f-ad4e-70867319580a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8571,7 +8571,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:43 GMT"
+ "Thu, 14 May 2020 21:33:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8586,17 +8586,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8115500f-7f52-481f-b29c-a2309cb0d453"
+ "c83d5738-d0e7-4773-96a4-2be62a3c6773"
],
"Accept-Language": [
"en-US"
@@ -8619,13 +8619,13 @@
"11737"
],
"x-ms-request-id": [
- "4508914d-eb96-4a7d-86ac-654bef2035fa"
+ "36a64c12-46c4-4450-94f5-130c41c4cc8a"
],
"x-ms-correlation-request-id": [
- "4508914d-eb96-4a7d-86ac-654bef2035fa"
+ "36a64c12-46c4-4450-94f5-130c41c4cc8a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224643Z:4508914d-eb96-4a7d-86ac-654bef2035fa"
+ "NORTHCENTRALUS:20200514T213328Z:36a64c12-46c4-4450-94f5-130c41c4cc8a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8634,7 +8634,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:43 GMT"
+ "Thu, 14 May 2020 21:33:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8649,17 +8649,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "761d31ce-e5f6-43ee-93f0-84cfde539103"
+ "12a61f2a-a6f5-4c06-92e3-b60ac2e5e603"
],
"Accept-Language": [
"en-US"
@@ -8682,13 +8682,13 @@
"11735"
],
"x-ms-request-id": [
- "0e2b734a-c8a2-4263-9b12-849424352312"
+ "d2f6564e-5476-4900-8b45-8e0bca35edca"
],
"x-ms-correlation-request-id": [
- "0e2b734a-c8a2-4263-9b12-849424352312"
+ "d2f6564e-5476-4900-8b45-8e0bca35edca"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224644Z:0e2b734a-c8a2-4263-9b12-849424352312"
+ "NORTHCENTRALUS:20200514T213328Z:d2f6564e-5476-4900-8b45-8e0bca35edca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8697,7 +8697,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:43 GMT"
+ "Thu, 14 May 2020 21:33:28 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8712,17 +8712,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:21.1381422Z\",\r\n \"duration\": \"PT47.8328228S\",\r\n \"trackingId\": \"6c48b7f6-29fe-44a0-9e38-c4cb90753c7d\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64b3a086-d5b6-43fa-802b-64a40dddabbd"
+ "70268f31-7e48-4351-91f8-22fe2a24672d"
],
"Accept-Language": [
"en-US"
@@ -8745,13 +8745,13 @@
"11733"
],
"x-ms-request-id": [
- "2dfc0c08-9bce-4260-9ba3-7a714d7f83ec"
+ "9fddbf60-b048-4f2b-9004-3cf5b146fa7a"
],
"x-ms-correlation-request-id": [
- "2dfc0c08-9bce-4260-9ba3-7a714d7f83ec"
+ "9fddbf60-b048-4f2b-9004-3cf5b146fa7a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224644Z:2dfc0c08-9bce-4260-9ba3-7a714d7f83ec"
+ "NORTHCENTRALUS:20200514T213329Z:9fddbf60-b048-4f2b-9004-3cf5b146fa7a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8760,7 +8760,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:44 GMT"
+ "Thu, 14 May 2020 21:33:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8769,23 +8769,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdd7105c-c638-430e-b0f0-817e3c0d6562"
+ "ef8eb9e6-623e-490b-b9e7-23c65ff132ea"
],
"Accept-Language": [
"en-US"
@@ -8808,13 +8808,13 @@
"11731"
],
"x-ms-request-id": [
- "276bf240-db38-4499-9847-6c83e4e1fe3a"
+ "46682101-8cca-45bd-940f-28edf4c84f2a"
],
"x-ms-correlation-request-id": [
- "276bf240-db38-4499-9847-6c83e4e1fe3a"
+ "46682101-8cca-45bd-940f-28edf4c84f2a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224645Z:276bf240-db38-4499-9847-6c83e4e1fe3a"
+ "NORTHCENTRALUS:20200514T213329Z:46682101-8cca-45bd-940f-28edf4c84f2a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8823,7 +8823,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:44 GMT"
+ "Thu, 14 May 2020 21:33:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8832,23 +8832,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d66652bd-c058-409e-91c8-8ceec63b3308"
+ "ebe2d96f-5556-46f8-a595-5bfb1dff1635"
],
"Accept-Language": [
"en-US"
@@ -8871,13 +8871,13 @@
"11729"
],
"x-ms-request-id": [
- "f1a1026c-3d5d-44b8-afad-101823fb82a9"
+ "e9878d9d-fea6-4cc8-8568-489f614c2e30"
],
"x-ms-correlation-request-id": [
- "f1a1026c-3d5d-44b8-afad-101823fb82a9"
+ "e9878d9d-fea6-4cc8-8568-489f614c2e30"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224645Z:f1a1026c-3d5d-44b8-afad-101823fb82a9"
+ "NORTHCENTRALUS:20200514T213330Z:e9878d9d-fea6-4cc8-8568-489f614c2e30"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8886,7 +8886,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:44 GMT"
+ "Thu, 14 May 2020 21:33:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8895,23 +8895,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db0c1e62-4bde-441e-8991-f6a89b915c95"
+ "0315c7df-cfb3-4617-8f28-cbea4da38030"
],
"Accept-Language": [
"en-US"
@@ -8934,13 +8934,13 @@
"11727"
],
"x-ms-request-id": [
- "da1f1817-e9b2-45d0-9156-664add489e91"
+ "efebdaa6-f28f-4dd9-baff-c860829a2061"
],
"x-ms-correlation-request-id": [
- "da1f1817-e9b2-45d0-9156-664add489e91"
+ "efebdaa6-f28f-4dd9-baff-c860829a2061"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224645Z:da1f1817-e9b2-45d0-9156-664add489e91"
+ "NORTHCENTRALUS:20200514T213330Z:efebdaa6-f28f-4dd9-baff-c860829a2061"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -8949,7 +8949,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:45 GMT"
+ "Thu, 14 May 2020 21:33:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -8958,23 +8958,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a99843cf-40f1-4918-b574-f9c32e5a5137"
+ "97ccd639-544a-4901-9e59-88b0f78ed607"
],
"Accept-Language": [
"en-US"
@@ -8997,13 +8997,13 @@
"11725"
],
"x-ms-request-id": [
- "7a4b8bde-a8ac-4d26-bc1f-09d2681f76ae"
+ "92b8ddf0-18cf-4569-a5a9-ec5b0daa2ecf"
],
"x-ms-correlation-request-id": [
- "7a4b8bde-a8ac-4d26-bc1f-09d2681f76ae"
+ "92b8ddf0-18cf-4569-a5a9-ec5b0daa2ecf"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224646Z:7a4b8bde-a8ac-4d26-bc1f-09d2681f76ae"
+ "NORTHCENTRALUS:20200514T213331Z:92b8ddf0-18cf-4569-a5a9-ec5b0daa2ecf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9012,7 +9012,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:45 GMT"
+ "Thu, 14 May 2020 21:33:30 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9021,23 +9021,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69ece258-a5ca-465c-85b4-594b738ea4a3"
+ "d3160831-6d82-4f62-950d-d26bf7382d27"
],
"Accept-Language": [
"en-US"
@@ -9060,13 +9060,13 @@
"11723"
],
"x-ms-request-id": [
- "db3fcdda-7cda-4367-829a-a42303e64295"
+ "8dbbe3bf-88df-490f-adeb-352796df0008"
],
"x-ms-correlation-request-id": [
- "db3fcdda-7cda-4367-829a-a42303e64295"
+ "8dbbe3bf-88df-490f-adeb-352796df0008"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224646Z:db3fcdda-7cda-4367-829a-a42303e64295"
+ "NORTHCENTRALUS:20200514T213331Z:8dbbe3bf-88df-490f-adeb-352796df0008"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9075,7 +9075,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:46 GMT"
+ "Thu, 14 May 2020 21:33:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9084,23 +9084,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82545698-f615-49dc-87c7-2bac3475bdfd"
+ "70af16df-57ea-41ce-8732-59f4730e22a1"
],
"Accept-Language": [
"en-US"
@@ -9123,13 +9123,13 @@
"11721"
],
"x-ms-request-id": [
- "fe8ea5d8-eb93-4468-bcf9-e5aa5595fe64"
+ "41e04fd4-fe38-40bf-80a5-3098ee8d2837"
],
"x-ms-correlation-request-id": [
- "fe8ea5d8-eb93-4468-bcf9-e5aa5595fe64"
+ "41e04fd4-fe38-40bf-80a5-3098ee8d2837"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224646Z:fe8ea5d8-eb93-4468-bcf9-e5aa5595fe64"
+ "NORTHCENTRALUS:20200514T213332Z:41e04fd4-fe38-40bf-80a5-3098ee8d2837"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9138,7 +9138,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:46 GMT"
+ "Thu, 14 May 2020 21:33:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9147,23 +9147,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfd1f5c6-fca8-4f0c-b271-020900324cbe"
+ "10f44f9b-8211-4b82-92fc-4c88dd8e3e0f"
],
"Accept-Language": [
"en-US"
@@ -9186,13 +9186,13 @@
"11719"
],
"x-ms-request-id": [
- "7a3a03fe-1875-44aa-9ffc-736b09f74ab2"
+ "a961fbc0-c7dc-4bdd-98ba-0e94afdfcbda"
],
"x-ms-correlation-request-id": [
- "7a3a03fe-1875-44aa-9ffc-736b09f74ab2"
+ "a961fbc0-c7dc-4bdd-98ba-0e94afdfcbda"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224647Z:7a3a03fe-1875-44aa-9ffc-736b09f74ab2"
+ "NORTHCENTRALUS:20200514T213332Z:a961fbc0-c7dc-4bdd-98ba-0e94afdfcbda"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9201,7 +9201,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:46 GMT"
+ "Thu, 14 May 2020 21:33:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9210,23 +9210,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ad09076-62d1-4bb1-b640-a969d5a1860a"
+ "484f4e95-e1dc-49d0-ba9a-032d044c0f66"
],
"Accept-Language": [
"en-US"
@@ -9249,13 +9249,13 @@
"11717"
],
"x-ms-request-id": [
- "85cebb27-4f1c-4756-af93-8b73d82780ae"
+ "4df50161-de80-4318-9ee6-43b70e8f2be1"
],
"x-ms-correlation-request-id": [
- "85cebb27-4f1c-4756-af93-8b73d82780ae"
+ "4df50161-de80-4318-9ee6-43b70e8f2be1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224647Z:85cebb27-4f1c-4756-af93-8b73d82780ae"
+ "NORTHCENTRALUS:20200514T213332Z:4df50161-de80-4318-9ee6-43b70e8f2be1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9264,7 +9264,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:47 GMT"
+ "Thu, 14 May 2020 21:33:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9273,23 +9273,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9c7bc68-765e-466b-9371-643113114eb7"
+ "a3d41d48-6ebd-42f0-b570-a65d73b20eca"
],
"Accept-Language": [
"en-US"
@@ -9312,13 +9312,13 @@
"11715"
],
"x-ms-request-id": [
- "8f4f9291-ae27-443f-9b6e-98266dd9e1f6"
+ "9ee499c8-06b3-4b43-a69d-b19846ca3627"
],
"x-ms-correlation-request-id": [
- "8f4f9291-ae27-443f-9b6e-98266dd9e1f6"
+ "9ee499c8-06b3-4b43-a69d-b19846ca3627"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224648Z:8f4f9291-ae27-443f-9b6e-98266dd9e1f6"
+ "NORTHCENTRALUS:20200514T213333Z:9ee499c8-06b3-4b43-a69d-b19846ca3627"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9327,7 +9327,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:47 GMT"
+ "Thu, 14 May 2020 21:33:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9336,23 +9336,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3144890c-60ad-43a8-a4d0-ebd1805b9213"
+ "21187fd2-b6a1-4c4d-bc54-d7f986269735"
],
"Accept-Language": [
"en-US"
@@ -9375,13 +9375,13 @@
"11713"
],
"x-ms-request-id": [
- "f1ea4001-0c92-42ff-8bfe-080a279d14a2"
+ "ad251780-6cf6-422a-9290-21deb031d07a"
],
"x-ms-correlation-request-id": [
- "f1ea4001-0c92-42ff-8bfe-080a279d14a2"
+ "ad251780-6cf6-422a-9290-21deb031d07a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224648Z:f1ea4001-0c92-42ff-8bfe-080a279d14a2"
+ "NORTHCENTRALUS:20200514T213333Z:ad251780-6cf6-422a-9290-21deb031d07a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9390,7 +9390,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:47 GMT"
+ "Thu, 14 May 2020 21:33:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9399,23 +9399,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4273b546-542d-4f23-adb9-e5659a04396c"
+ "369a66dd-b526-4ae7-bf43-03f3185c516d"
],
"Accept-Language": [
"en-US"
@@ -9438,13 +9438,13 @@
"11711"
],
"x-ms-request-id": [
- "f7bebb73-5f8f-4c12-b0d3-184f30e4b467"
+ "97c398d0-4747-45a4-9fd2-0837c7c7b2a3"
],
"x-ms-correlation-request-id": [
- "f7bebb73-5f8f-4c12-b0d3-184f30e4b467"
+ "97c398d0-4747-45a4-9fd2-0837c7c7b2a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224648Z:f7bebb73-5f8f-4c12-b0d3-184f30e4b467"
+ "NORTHCENTRALUS:20200514T213334Z:97c398d0-4747-45a4-9fd2-0837c7c7b2a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9453,7 +9453,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:48 GMT"
+ "Thu, 14 May 2020 21:33:33 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9462,23 +9462,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3a18a79-7c10-42e5-bc9d-6332d7b2e68e"
+ "90f4a2a7-f524-4239-abdd-409ac74d8e27"
],
"Accept-Language": [
"en-US"
@@ -9501,13 +9501,13 @@
"11709"
],
"x-ms-request-id": [
- "dfc80cd7-7dde-4f68-b8d2-942b3d9a78c4"
+ "d58556d5-613a-4681-a489-deba333002a4"
],
"x-ms-correlation-request-id": [
- "dfc80cd7-7dde-4f68-b8d2-942b3d9a78c4"
+ "d58556d5-613a-4681-a489-deba333002a4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224649Z:dfc80cd7-7dde-4f68-b8d2-942b3d9a78c4"
+ "NORTHCENTRALUS:20200514T213334Z:d58556d5-613a-4681-a489-deba333002a4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9516,7 +9516,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:48 GMT"
+ "Thu, 14 May 2020 21:33:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9525,23 +9525,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15272b5f-c163-4742-837b-f949510273ce"
+ "6c166faf-35a7-43f6-baae-2c3d6288eaed"
],
"Accept-Language": [
"en-US"
@@ -9564,13 +9564,13 @@
"11707"
],
"x-ms-request-id": [
- "2b1bd423-396d-4ab9-9844-2e1aaf8eefca"
+ "ea340e05-efd0-45e1-9da4-583aa2754a46"
],
"x-ms-correlation-request-id": [
- "2b1bd423-396d-4ab9-9844-2e1aaf8eefca"
+ "ea340e05-efd0-45e1-9da4-583aa2754a46"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224649Z:2b1bd423-396d-4ab9-9844-2e1aaf8eefca"
+ "NORTHCENTRALUS:20200514T213335Z:ea340e05-efd0-45e1-9da4-583aa2754a46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9579,7 +9579,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:49 GMT"
+ "Thu, 14 May 2020 21:33:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9588,23 +9588,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "644733ba-a926-4a32-824c-10ceb4eddafe"
+ "26533f63-c9a1-40eb-a1ac-281d495e87aa"
],
"Accept-Language": [
"en-US"
@@ -9627,13 +9627,13 @@
"11705"
],
"x-ms-request-id": [
- "bc9f7059-bedd-43f8-9058-ee19b76c88d9"
+ "3b2024c4-6c8c-4065-9d57-0a2edb2fa614"
],
"x-ms-correlation-request-id": [
- "bc9f7059-bedd-43f8-9058-ee19b76c88d9"
+ "3b2024c4-6c8c-4065-9d57-0a2edb2fa614"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224650Z:bc9f7059-bedd-43f8-9058-ee19b76c88d9"
+ "NORTHCENTRALUS:20200514T213335Z:3b2024c4-6c8c-4065-9d57-0a2edb2fa614"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9642,7 +9642,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:49 GMT"
+ "Thu, 14 May 2020 21:33:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9651,23 +9651,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb5cf44c-0c9a-4912-b641-b3b16f97a07c"
+ "74691fc6-3e0b-479f-99ae-452c1e0de58c"
],
"Accept-Language": [
"en-US"
@@ -9690,13 +9690,13 @@
"11703"
],
"x-ms-request-id": [
- "ed1fe1f9-04f2-4bff-95a3-067376cc1aae"
+ "7207eb1a-f668-464b-877f-348de8718089"
],
"x-ms-correlation-request-id": [
- "ed1fe1f9-04f2-4bff-95a3-067376cc1aae"
+ "7207eb1a-f668-464b-877f-348de8718089"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224650Z:ed1fe1f9-04f2-4bff-95a3-067376cc1aae"
+ "NORTHCENTRALUS:20200514T213336Z:7207eb1a-f668-464b-877f-348de8718089"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9705,7 +9705,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:49 GMT"
+ "Thu, 14 May 2020 21:33:35 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9714,23 +9714,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d69834e3-3cd5-4cea-84bd-d8023dfd7970"
+ "278b89bd-de67-48f7-a08e-15daac38ca1d"
],
"Accept-Language": [
"en-US"
@@ -9753,13 +9753,13 @@
"11701"
],
"x-ms-request-id": [
- "affebe6d-09a3-4029-a017-11bac0a68913"
+ "447a1c03-35bf-4dfc-9ae6-af5a6821ee15"
],
"x-ms-correlation-request-id": [
- "affebe6d-09a3-4029-a017-11bac0a68913"
+ "447a1c03-35bf-4dfc-9ae6-af5a6821ee15"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224650Z:affebe6d-09a3-4029-a017-11bac0a68913"
+ "NORTHCENTRALUS:20200514T213336Z:447a1c03-35bf-4dfc-9ae6-af5a6821ee15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9768,7 +9768,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:50 GMT"
+ "Thu, 14 May 2020 21:33:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9777,23 +9777,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17957214-bd8a-4ff7-b9c7-37307e7c48eb"
+ "30d340a3-8987-4bb5-9036-2dd7dc1a9ed8"
],
"Accept-Language": [
"en-US"
@@ -9816,13 +9816,13 @@
"11699"
],
"x-ms-request-id": [
- "88a3e123-fd39-4524-99cc-52859696e0df"
+ "b2404f32-a6cc-4afa-98f2-7f014d7cc516"
],
"x-ms-correlation-request-id": [
- "88a3e123-fd39-4524-99cc-52859696e0df"
+ "b2404f32-a6cc-4afa-98f2-7f014d7cc516"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224651Z:88a3e123-fd39-4524-99cc-52859696e0df"
+ "NORTHCENTRALUS:20200514T213336Z:b2404f32-a6cc-4afa-98f2-7f014d7cc516"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9831,7 +9831,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:50 GMT"
+ "Thu, 14 May 2020 21:33:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9840,23 +9840,23 @@
"-1"
],
"Content-Length": [
- "829"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:41.0864269Z\",\r\n \"duration\": \"PT53.5907269S\",\r\n \"trackingId\": \"ac8e2e30-d409-468d-93a7-996090979456\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a32b55fa-2c03-4d09-be89-8b32e709ae44"
+ "44409b94-cf5a-42c5-9e45-439c0695bd7a"
],
"Accept-Language": [
"en-US"
@@ -9879,13 +9879,13 @@
"11697"
],
"x-ms-request-id": [
- "569ac33a-3d1d-4401-86a9-ddb5c500df42"
+ "13b18350-c89a-4363-861b-51d16abafed9"
],
"x-ms-correlation-request-id": [
- "569ac33a-3d1d-4401-86a9-ddb5c500df42"
+ "13b18350-c89a-4363-861b-51d16abafed9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224651Z:569ac33a-3d1d-4401-86a9-ddb5c500df42"
+ "NORTHCENTRALUS:20200514T213337Z:13b18350-c89a-4363-861b-51d16abafed9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9894,7 +9894,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:51 GMT"
+ "Thu, 14 May 2020 21:33:36 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9903,23 +9903,23 @@
"-1"
],
"Content-Length": [
- "830"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca5998ff-232c-45ce-b867-4797f7530e67"
+ "4f3fe24b-0611-4ec1-9d1d-e491b769611d"
],
"Accept-Language": [
"en-US"
@@ -9942,13 +9942,13 @@
"11695"
],
"x-ms-request-id": [
- "21d30875-f8a0-46b0-b063-b444a9b851ab"
+ "f960fd8b-bf6b-4a15-bcb5-5f581105227d"
],
"x-ms-correlation-request-id": [
- "21d30875-f8a0-46b0-b063-b444a9b851ab"
+ "f960fd8b-bf6b-4a15-bcb5-5f581105227d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224652Z:21d30875-f8a0-46b0-b063-b444a9b851ab"
+ "NORTHCENTRALUS:20200514T213337Z:f960fd8b-bf6b-4a15-bcb5-5f581105227d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -9957,7 +9957,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:51 GMT"
+ "Thu, 14 May 2020 21:33:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -9966,23 +9966,23 @@
"-1"
],
"Content-Length": [
- "830"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "88356fa3-cb25-4d87-855f-7a37f52e73f3"
+ "5d00bad6-ed16-44ab-bd98-bb9c81655755"
],
"Accept-Language": [
"en-US"
@@ -10005,13 +10005,13 @@
"11693"
],
"x-ms-request-id": [
- "64ecbd92-cc45-4a95-bc55-49798968d6a4"
+ "de0dd30b-8fa3-4a51-8cc5-4618ff0809db"
],
"x-ms-correlation-request-id": [
- "64ecbd92-cc45-4a95-bc55-49798968d6a4"
+ "de0dd30b-8fa3-4a51-8cc5-4618ff0809db"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224652Z:64ecbd92-cc45-4a95-bc55-49798968d6a4"
+ "NORTHCENTRALUS:20200514T213338Z:de0dd30b-8fa3-4a51-8cc5-4618ff0809db"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10020,7 +10020,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:51 GMT"
+ "Thu, 14 May 2020 21:33:37 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10029,23 +10029,23 @@
"-1"
],
"Content-Length": [
- "830"
+ "828"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:28.988501Z\",\r\n \"duration\": \"PT55.6831816S\",\r\n \"trackingId\": \"b2a54220-ec38-4f8c-b4a9-959a23b87e70\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3117e331-a791-4c19-92de-2b89f293da47"
+ "04ed9eb2-6274-4fb3-bbc0-674274e57e20"
],
"Accept-Language": [
"en-US"
@@ -10068,13 +10068,13 @@
"11691"
],
"x-ms-request-id": [
- "1d83a605-7878-44c0-82fa-599aef277f45"
+ "93b24771-ad06-4701-92d1-e62ad6b3d6b9"
],
"x-ms-correlation-request-id": [
- "1d83a605-7878-44c0-82fa-599aef277f45"
+ "93b24771-ad06-4701-92d1-e62ad6b3d6b9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224652Z:1d83a605-7878-44c0-82fa-599aef277f45"
+ "NORTHCENTRALUS:20200514T213338Z:93b24771-ad06-4701-92d1-e62ad6b3d6b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10083,7 +10083,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:52 GMT"
+ "Thu, 14 May 2020 21:33:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10098,17 +10098,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ba984d2-d12c-44f4-b7f3-0f22a216b034"
+ "7e898f49-7372-4449-97be-0f0b11dcbbea"
],
"Accept-Language": [
"en-US"
@@ -10131,13 +10131,13 @@
"11689"
],
"x-ms-request-id": [
- "96704f87-5dec-4630-a4cc-7a6561f8d420"
+ "896f99c6-2e71-4445-a67e-7b34fbe8bcee"
],
"x-ms-correlation-request-id": [
- "96704f87-5dec-4630-a4cc-7a6561f8d420"
+ "896f99c6-2e71-4445-a67e-7b34fbe8bcee"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224653Z:96704f87-5dec-4630-a4cc-7a6561f8d420"
+ "NORTHCENTRALUS:20200514T213339Z:896f99c6-2e71-4445-a67e-7b34fbe8bcee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10146,7 +10146,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:52 GMT"
+ "Thu, 14 May 2020 21:33:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10161,17 +10161,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22a793b8-2508-45c6-a021-8a5c6c34d7cb"
+ "5e7d6476-498b-4611-a1a5-342d02370b20"
],
"Accept-Language": [
"en-US"
@@ -10194,13 +10194,13 @@
"11687"
],
"x-ms-request-id": [
- "f725f3b2-4785-41fb-907b-733631424ad0"
+ "07618f55-5123-4686-b80f-499cc4809bfa"
],
"x-ms-correlation-request-id": [
- "f725f3b2-4785-41fb-907b-733631424ad0"
+ "07618f55-5123-4686-b80f-499cc4809bfa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224653Z:f725f3b2-4785-41fb-907b-733631424ad0"
+ "NORTHCENTRALUS:20200514T213339Z:07618f55-5123-4686-b80f-499cc4809bfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10209,7 +10209,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:52 GMT"
+ "Thu, 14 May 2020 21:33:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10224,17 +10224,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f806417-f46c-47c0-873c-4fc907c712ba"
+ "54ad089d-e71c-4d4a-b489-e7eb238e9fc6"
],
"Accept-Language": [
"en-US"
@@ -10257,13 +10257,13 @@
"11685"
],
"x-ms-request-id": [
- "2a28fe00-492e-4ac3-a03d-17ea09104955"
+ "c13e63a6-57ff-4cce-bff5-40bea638eaf4"
],
"x-ms-correlation-request-id": [
- "2a28fe00-492e-4ac3-a03d-17ea09104955"
+ "c13e63a6-57ff-4cce-bff5-40bea638eaf4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224653Z:2a28fe00-492e-4ac3-a03d-17ea09104955"
+ "NORTHCENTRALUS:20200514T213340Z:c13e63a6-57ff-4cce-bff5-40bea638eaf4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10272,7 +10272,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:53 GMT"
+ "Thu, 14 May 2020 21:33:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10287,17 +10287,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4cc3f2b4-f92f-4b5c-b0aa-8b086c8cbcc1"
+ "68c61698-9abf-40d8-8379-c77c530ea35d"
],
"Accept-Language": [
"en-US"
@@ -10320,13 +10320,13 @@
"11683"
],
"x-ms-request-id": [
- "093b08c6-e610-4a74-9b05-82adf76356ca"
+ "1ea26cbd-a638-4ad7-a0ae-5e5d151933e3"
],
"x-ms-correlation-request-id": [
- "093b08c6-e610-4a74-9b05-82adf76356ca"
+ "1ea26cbd-a638-4ad7-a0ae-5e5d151933e3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224654Z:093b08c6-e610-4a74-9b05-82adf76356ca"
+ "NORTHCENTRALUS:20200514T213340Z:1ea26cbd-a638-4ad7-a0ae-5e5d151933e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10335,7 +10335,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:53 GMT"
+ "Thu, 14 May 2020 21:33:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10350,17 +10350,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aeca2658-35e1-44f4-8d57-c4f0c637bb56"
+ "be348347-e37c-4091-84d1-286f616c5979"
],
"Accept-Language": [
"en-US"
@@ -10383,13 +10383,13 @@
"11681"
],
"x-ms-request-id": [
- "b08d9dc4-9615-4689-b008-fc8471df7e4e"
+ "e39cbc86-2b7c-4b26-a021-52c0cc93622e"
],
"x-ms-correlation-request-id": [
- "b08d9dc4-9615-4689-b008-fc8471df7e4e"
+ "e39cbc86-2b7c-4b26-a021-52c0cc93622e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224654Z:b08d9dc4-9615-4689-b008-fc8471df7e4e"
+ "NORTHCENTRALUS:20200514T213340Z:e39cbc86-2b7c-4b26-a021-52c0cc93622e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10398,7 +10398,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:54 GMT"
+ "Thu, 14 May 2020 21:33:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10413,17 +10413,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23f3b90a-a675-401a-9e51-2d56d7e1c4e1"
+ "4d84a6a0-b35e-47cf-9680-d5d15fa1d08d"
],
"Accept-Language": [
"en-US"
@@ -10446,13 +10446,13 @@
"11679"
],
"x-ms-request-id": [
- "d7a4bff8-0e34-4802-b61c-a9b9af87a9ea"
+ "c2663605-1288-47c6-9a98-775837df497e"
],
"x-ms-correlation-request-id": [
- "d7a4bff8-0e34-4802-b61c-a9b9af87a9ea"
+ "c2663605-1288-47c6-9a98-775837df497e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224655Z:d7a4bff8-0e34-4802-b61c-a9b9af87a9ea"
+ "NORTHCENTRALUS:20200514T213341Z:c2663605-1288-47c6-9a98-775837df497e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10461,7 +10461,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:54 GMT"
+ "Thu, 14 May 2020 21:33:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10476,17 +10476,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c656131-3cee-4972-9627-f2aa14a7163b"
+ "e2299f05-f872-40c6-b2a9-81800a8da1f2"
],
"Accept-Language": [
"en-US"
@@ -10509,13 +10509,13 @@
"11677"
],
"x-ms-request-id": [
- "a6e2d69b-9495-499c-8195-cfee0403eec3"
+ "03dab7f0-d451-4696-9acc-b3bb5165b849"
],
"x-ms-correlation-request-id": [
- "a6e2d69b-9495-499c-8195-cfee0403eec3"
+ "03dab7f0-d451-4696-9acc-b3bb5165b849"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224655Z:a6e2d69b-9495-499c-8195-cfee0403eec3"
+ "NORTHCENTRALUS:20200514T213341Z:03dab7f0-d451-4696-9acc-b3bb5165b849"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10524,7 +10524,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:54 GMT"
+ "Thu, 14 May 2020 21:33:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10539,17 +10539,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a12236cf-0baa-4c88-91d0-babfe388cb69"
+ "5dcd3509-c618-4b8c-84fe-7f64e4e0faff"
],
"Accept-Language": [
"en-US"
@@ -10572,13 +10572,13 @@
"11675"
],
"x-ms-request-id": [
- "4d6d746f-6703-43f5-b128-49e4839f5fbe"
+ "54b85052-7150-47c1-8509-d799f0c34632"
],
"x-ms-correlation-request-id": [
- "4d6d746f-6703-43f5-b128-49e4839f5fbe"
+ "54b85052-7150-47c1-8509-d799f0c34632"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224655Z:4d6d746f-6703-43f5-b128-49e4839f5fbe"
+ "NORTHCENTRALUS:20200514T213342Z:54b85052-7150-47c1-8509-d799f0c34632"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10587,7 +10587,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:55 GMT"
+ "Thu, 14 May 2020 21:33:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10602,17 +10602,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e3bfb6c-a34d-42d3-a2d4-c021bee2e870"
+ "d188352d-675e-4c23-beba-b5d6b52c6007"
],
"Accept-Language": [
"en-US"
@@ -10635,13 +10635,13 @@
"11673"
],
"x-ms-request-id": [
- "5686c85b-b2b8-4bdb-bffc-59c4ef4cffb0"
+ "99b804f5-9cb4-49e5-ab47-59edd248d1e8"
],
"x-ms-correlation-request-id": [
- "5686c85b-b2b8-4bdb-bffc-59c4ef4cffb0"
+ "99b804f5-9cb4-49e5-ab47-59edd248d1e8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224656Z:5686c85b-b2b8-4bdb-bffc-59c4ef4cffb0"
+ "NORTHCENTRALUS:20200514T213342Z:99b804f5-9cb4-49e5-ab47-59edd248d1e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10650,7 +10650,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:55 GMT"
+ "Thu, 14 May 2020 21:33:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10665,17 +10665,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e8d59a3-335d-405c-a80b-41f5be03804b"
+ "19fb04f0-6380-4f42-863d-3cd0faadcd45"
],
"Accept-Language": [
"en-US"
@@ -10698,13 +10698,13 @@
"11671"
],
"x-ms-request-id": [
- "436a556e-49d9-46a5-bba6-036f70754cb8"
+ "fb7fea0f-e745-4010-b5ab-19d48f48f0b7"
],
"x-ms-correlation-request-id": [
- "436a556e-49d9-46a5-bba6-036f70754cb8"
+ "fb7fea0f-e745-4010-b5ab-19d48f48f0b7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224656Z:436a556e-49d9-46a5-bba6-036f70754cb8"
+ "NORTHCENTRALUS:20200514T213343Z:fb7fea0f-e745-4010-b5ab-19d48f48f0b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10713,7 +10713,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:56 GMT"
+ "Thu, 14 May 2020 21:33:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10728,17 +10728,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf71aec9-a0c3-43bf-a899-1b97d33cc1da"
+ "3301ebbb-8da7-4ed6-84c6-69bd65b5c219"
],
"Accept-Language": [
"en-US"
@@ -10761,13 +10761,13 @@
"11669"
],
"x-ms-request-id": [
- "c60a9faa-7eed-43e9-8497-f7df0e8ce7ab"
+ "1c886de4-4c5c-436f-8796-dd214b7d0352"
],
"x-ms-correlation-request-id": [
- "c60a9faa-7eed-43e9-8497-f7df0e8ce7ab"
+ "1c886de4-4c5c-436f-8796-dd214b7d0352"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224657Z:c60a9faa-7eed-43e9-8497-f7df0e8ce7ab"
+ "NORTHCENTRALUS:20200514T213343Z:1c886de4-4c5c-436f-8796-dd214b7d0352"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10776,7 +10776,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:56 GMT"
+ "Thu, 14 May 2020 21:33:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10791,17 +10791,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db1e508c-522d-4bd9-b4b8-e055d92d1261"
+ "a3fe1db2-8944-4029-9c8b-f84c40bf0c71"
],
"Accept-Language": [
"en-US"
@@ -10824,13 +10824,13 @@
"11667"
],
"x-ms-request-id": [
- "1a0880cd-aad9-4616-a0c6-f0f49efde4ce"
+ "52f1afa3-3dd1-46db-bbca-642ab6d040a3"
],
"x-ms-correlation-request-id": [
- "1a0880cd-aad9-4616-a0c6-f0f49efde4ce"
+ "52f1afa3-3dd1-46db-bbca-642ab6d040a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224657Z:1a0880cd-aad9-4616-a0c6-f0f49efde4ce"
+ "NORTHCENTRALUS:20200514T213344Z:52f1afa3-3dd1-46db-bbca-642ab6d040a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10839,7 +10839,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:56 GMT"
+ "Thu, 14 May 2020 21:33:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10854,17 +10854,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "256418e3-4b30-40b0-a404-e99f60774ac8"
+ "bc84693d-ec36-4973-aabd-06bf1b92722c"
],
"Accept-Language": [
"en-US"
@@ -10887,13 +10887,13 @@
"11665"
],
"x-ms-request-id": [
- "40d26549-1ce0-4923-b363-8223256dd2e2"
+ "0ff7de69-8f04-4548-89b5-874024e434be"
],
"x-ms-correlation-request-id": [
- "40d26549-1ce0-4923-b363-8223256dd2e2"
+ "0ff7de69-8f04-4548-89b5-874024e434be"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224658Z:40d26549-1ce0-4923-b363-8223256dd2e2"
+ "NORTHCENTRALUS:20200514T213344Z:0ff7de69-8f04-4548-89b5-874024e434be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10902,7 +10902,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:57 GMT"
+ "Thu, 14 May 2020 21:33:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10917,17 +10917,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "68b16645-9132-48e4-96e2-df9559769696"
+ "a0d363c6-3db2-4bef-872b-34c9e3045d71"
],
"Accept-Language": [
"en-US"
@@ -10950,13 +10950,13 @@
"11663"
],
"x-ms-request-id": [
- "a305fba6-acd1-4c02-94e3-dc174d0a8d5b"
+ "8fa5cabc-79f8-4926-9f6e-e52b7e7b5f19"
],
"x-ms-correlation-request-id": [
- "a305fba6-acd1-4c02-94e3-dc174d0a8d5b"
+ "8fa5cabc-79f8-4926-9f6e-e52b7e7b5f19"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224658Z:a305fba6-acd1-4c02-94e3-dc174d0a8d5b"
+ "NORTHCENTRALUS:20200514T213345Z:8fa5cabc-79f8-4926-9f6e-e52b7e7b5f19"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -10965,7 +10965,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:57 GMT"
+ "Thu, 14 May 2020 21:33:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -10980,17 +10980,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "09bc589d-16b1-4809-909d-a2b94127c9a3"
+ "a1957c45-a396-4331-8f7e-4417140d9e48"
],
"Accept-Language": [
"en-US"
@@ -11013,13 +11013,13 @@
"11661"
],
"x-ms-request-id": [
- "c9623bd0-e1f9-4e6a-9d9b-06ae78f3e65c"
+ "b8efe7cf-cd3a-4bd2-b09a-45c1d7ff20af"
],
"x-ms-correlation-request-id": [
- "c9623bd0-e1f9-4e6a-9d9b-06ae78f3e65c"
+ "b8efe7cf-cd3a-4bd2-b09a-45c1d7ff20af"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224658Z:c9623bd0-e1f9-4e6a-9d9b-06ae78f3e65c"
+ "NORTHCENTRALUS:20200514T213345Z:b8efe7cf-cd3a-4bd2-b09a-45c1d7ff20af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11028,7 +11028,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:58 GMT"
+ "Thu, 14 May 2020 21:33:44 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11043,17 +11043,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a862b2ab-38c0-4d8f-90eb-77aac14b4896"
+ "0bfd9304-a9fc-478d-85f4-9602b213af81"
],
"Accept-Language": [
"en-US"
@@ -11076,13 +11076,13 @@
"11659"
],
"x-ms-request-id": [
- "fb3ccc3b-d6f7-4963-83f7-7527c98a8aaa"
+ "68c602b8-90f3-492b-a768-9771c4589c56"
],
"x-ms-correlation-request-id": [
- "fb3ccc3b-d6f7-4963-83f7-7527c98a8aaa"
+ "68c602b8-90f3-492b-a768-9771c4589c56"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224659Z:fb3ccc3b-d6f7-4963-83f7-7527c98a8aaa"
+ "NORTHCENTRALUS:20200514T213345Z:68c602b8-90f3-492b-a768-9771c4589c56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11091,7 +11091,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:58 GMT"
+ "Thu, 14 May 2020 21:33:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11106,17 +11106,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "585f0555-5756-422c-9f2f-04b1b32dc031"
+ "56dced1e-cfa0-4cd0-a1fa-b0bce3957b68"
],
"Accept-Language": [
"en-US"
@@ -11139,13 +11139,13 @@
"11657"
],
"x-ms-request-id": [
- "46990ea0-7f2d-4e0a-adfe-132ab4a0e34a"
+ "dfc14d41-4146-4961-8614-c889310d4d47"
],
"x-ms-correlation-request-id": [
- "46990ea0-7f2d-4e0a-adfe-132ab4a0e34a"
+ "dfc14d41-4146-4961-8614-c889310d4d47"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224659Z:46990ea0-7f2d-4e0a-adfe-132ab4a0e34a"
+ "NORTHCENTRALUS:20200514T213346Z:dfc14d41-4146-4961-8614-c889310d4d47"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11154,7 +11154,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:58 GMT"
+ "Thu, 14 May 2020 21:33:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11169,17 +11169,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e8bcfc3-f64f-45b8-8bcc-9c056f396c3d"
+ "e5c5e547-7088-4b02-b774-c0e36cc5c5bc"
],
"Accept-Language": [
"en-US"
@@ -11202,13 +11202,13 @@
"11655"
],
"x-ms-request-id": [
- "052dcfed-bed1-4663-aba0-af2aede4d6f1"
+ "79bf9f19-e02c-4064-a06e-d62ffa9447a3"
],
"x-ms-correlation-request-id": [
- "052dcfed-bed1-4663-aba0-af2aede4d6f1"
+ "79bf9f19-e02c-4064-a06e-d62ffa9447a3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224659Z:052dcfed-bed1-4663-aba0-af2aede4d6f1"
+ "NORTHCENTRALUS:20200514T213346Z:79bf9f19-e02c-4064-a06e-d62ffa9447a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11217,7 +11217,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:59 GMT"
+ "Thu, 14 May 2020 21:33:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11232,17 +11232,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec3ac557-6004-45b0-9011-80af2991bfcc"
+ "d72f8292-1ccb-4c0c-a1b2-dff5770ba026"
],
"Accept-Language": [
"en-US"
@@ -11265,13 +11265,13 @@
"11653"
],
"x-ms-request-id": [
- "0cfbffb8-e7dc-4fd3-956c-a91e74f558ea"
+ "3a0d05f0-11f0-426f-aef9-5ffd9b136704"
],
"x-ms-correlation-request-id": [
- "0cfbffb8-e7dc-4fd3-956c-a91e74f558ea"
+ "3a0d05f0-11f0-426f-aef9-5ffd9b136704"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224700Z:0cfbffb8-e7dc-4fd3-956c-a91e74f558ea"
+ "NORTHCENTRALUS:20200514T213347Z:3a0d05f0-11f0-426f-aef9-5ffd9b136704"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11280,7 +11280,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:46:59 GMT"
+ "Thu, 14 May 2020 21:33:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11295,17 +11295,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:38.3184328Z\",\r\n \"duration\": \"PT1M5.0131134S\",\r\n \"trackingId\": \"5083b0ea-7a6d-4823-9d48-fc8682edc11e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8a7a83e-58ca-4a47-b171-244a55d29eea"
+ "5097d2db-0cd4-4651-8db7-2edac078c569"
],
"Accept-Language": [
"en-US"
@@ -11328,13 +11328,13 @@
"11651"
],
"x-ms-request-id": [
- "100a2ff5-cd92-4231-b725-478a90cd1d96"
+ "973c1ddc-f70f-463f-b1be-857b06490092"
],
"x-ms-correlation-request-id": [
- "100a2ff5-cd92-4231-b725-478a90cd1d96"
+ "973c1ddc-f70f-463f-b1be-857b06490092"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224700Z:100a2ff5-cd92-4231-b725-478a90cd1d96"
+ "NORTHCENTRALUS:20200514T213347Z:973c1ddc-f70f-463f-b1be-857b06490092"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11343,7 +11343,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:00 GMT"
+ "Thu, 14 May 2020 21:33:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11358,17 +11358,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3a7a5e8-c4c5-424d-b813-85c91350107f"
+ "005675d5-53ab-4fe7-9311-4142bf997969"
],
"Accept-Language": [
"en-US"
@@ -11391,13 +11391,13 @@
"11649"
],
"x-ms-request-id": [
- "d586e452-bcf6-43c4-a9e0-9f6432a2a9cf"
+ "93241979-31a7-47a6-ab92-0d7473ee4fa1"
],
"x-ms-correlation-request-id": [
- "d586e452-bcf6-43c4-a9e0-9f6432a2a9cf"
+ "93241979-31a7-47a6-ab92-0d7473ee4fa1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224701Z:d586e452-bcf6-43c4-a9e0-9f6432a2a9cf"
+ "NORTHCENTRALUS:20200514T213348Z:93241979-31a7-47a6-ab92-0d7473ee4fa1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11406,7 +11406,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:00 GMT"
+ "Thu, 14 May 2020 21:33:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11421,17 +11421,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8631f869-b060-4893-a887-85616d048d85"
+ "8dac6d47-6055-4f8f-83f1-c0ae6884e09f"
],
"Accept-Language": [
"en-US"
@@ -11454,13 +11454,13 @@
"11647"
],
"x-ms-request-id": [
- "5437b32a-622a-4c75-bab9-60effa0050be"
+ "ba0aeec5-6aaf-45b7-a173-2c621869fb78"
],
"x-ms-correlation-request-id": [
- "5437b32a-622a-4c75-bab9-60effa0050be"
+ "ba0aeec5-6aaf-45b7-a173-2c621869fb78"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224701Z:5437b32a-622a-4c75-bab9-60effa0050be"
+ "NORTHCENTRALUS:20200514T213348Z:ba0aeec5-6aaf-45b7-a173-2c621869fb78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11469,7 +11469,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:00 GMT"
+ "Thu, 14 May 2020 21:33:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11484,17 +11484,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0c1990d0-9b9c-4c78-998e-93c2af655a30"
+ "6f286384-39ff-47f2-96e2-f648d7b86a02"
],
"Accept-Language": [
"en-US"
@@ -11517,13 +11517,13 @@
"11645"
],
"x-ms-request-id": [
- "c3699f30-5d8f-45aa-bb76-e8e683bdebb5"
+ "0f3f6adf-aab0-4dad-8eea-f5c1fa5aafd6"
],
"x-ms-correlation-request-id": [
- "c3699f30-5d8f-45aa-bb76-e8e683bdebb5"
+ "0f3f6adf-aab0-4dad-8eea-f5c1fa5aafd6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224701Z:c3699f30-5d8f-45aa-bb76-e8e683bdebb5"
+ "NORTHCENTRALUS:20200514T213348Z:0f3f6adf-aab0-4dad-8eea-f5c1fa5aafd6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11532,7 +11532,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:01 GMT"
+ "Thu, 14 May 2020 21:33:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11547,17 +11547,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f390105-ba2a-4409-a608-0703322b2991"
+ "55fc20f9-71d2-42ff-98a2-b56974c8d8c2"
],
"Accept-Language": [
"en-US"
@@ -11580,13 +11580,13 @@
"11643"
],
"x-ms-request-id": [
- "ee5d8daf-da66-4d88-8f22-42e71ab664a4"
+ "fa12fdcb-bd1f-4a69-9ab9-31e79b50af40"
],
"x-ms-correlation-request-id": [
- "ee5d8daf-da66-4d88-8f22-42e71ab664a4"
+ "fa12fdcb-bd1f-4a69-9ab9-31e79b50af40"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224702Z:ee5d8daf-da66-4d88-8f22-42e71ab664a4"
+ "NORTHCENTRALUS:20200514T213349Z:fa12fdcb-bd1f-4a69-9ab9-31e79b50af40"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11595,7 +11595,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:01 GMT"
+ "Thu, 14 May 2020 21:33:48 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11610,17 +11610,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "791dcaa2-89e1-41d4-b30a-8650388b7614"
+ "7660c483-dfb5-48b3-b069-4ee28bb80855"
],
"Accept-Language": [
"en-US"
@@ -11643,13 +11643,13 @@
"11641"
],
"x-ms-request-id": [
- "6aa3f340-e9b5-458d-8e1c-d41eff466fc5"
+ "f55db8ba-35b1-4927-9085-cca7981601c1"
],
"x-ms-correlation-request-id": [
- "6aa3f340-e9b5-458d-8e1c-d41eff466fc5"
+ "f55db8ba-35b1-4927-9085-cca7981601c1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224702Z:6aa3f340-e9b5-458d-8e1c-d41eff466fc5"
+ "NORTHCENTRALUS:20200514T213349Z:f55db8ba-35b1-4927-9085-cca7981601c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11658,7 +11658,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:01 GMT"
+ "Thu, 14 May 2020 21:33:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11673,17 +11673,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5f51409-2016-420c-a41b-277d2964d4a4"
+ "e9ba8f19-355d-41bc-99c2-4c74b1853a17"
],
"Accept-Language": [
"en-US"
@@ -11706,13 +11706,13 @@
"11639"
],
"x-ms-request-id": [
- "03fb2606-24eb-439b-8af2-9596d497a806"
+ "1a56d04a-f919-4c2c-86c5-027894f16e96"
],
"x-ms-correlation-request-id": [
- "03fb2606-24eb-439b-8af2-9596d497a806"
+ "1a56d04a-f919-4c2c-86c5-027894f16e96"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224703Z:03fb2606-24eb-439b-8af2-9596d497a806"
+ "NORTHCENTRALUS:20200514T213350Z:1a56d04a-f919-4c2c-86c5-027894f16e96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11721,7 +11721,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:02 GMT"
+ "Thu, 14 May 2020 21:33:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11736,17 +11736,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1d2b1ee-ab21-411a-9a73-167c6f770575"
+ "ed69ca07-4bc7-4676-9ffd-50218a5b40d5"
],
"Accept-Language": [
"en-US"
@@ -11769,13 +11769,13 @@
"11637"
],
"x-ms-request-id": [
- "c8cacee3-0f68-44fd-98ba-7f8969d65e67"
+ "6cb2a7f1-96dd-4717-ac03-0f9e6be124c2"
],
"x-ms-correlation-request-id": [
- "c8cacee3-0f68-44fd-98ba-7f8969d65e67"
+ "6cb2a7f1-96dd-4717-ac03-0f9e6be124c2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224703Z:c8cacee3-0f68-44fd-98ba-7f8969d65e67"
+ "NORTHCENTRALUS:20200514T213350Z:6cb2a7f1-96dd-4717-ac03-0f9e6be124c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11784,7 +11784,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:02 GMT"
+ "Thu, 14 May 2020 21:33:49 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11799,17 +11799,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7919e235-cd2a-4545-8b28-6946918e4187"
+ "3bbf5ad7-08ba-4254-92f4-de4e607886aa"
],
"Accept-Language": [
"en-US"
@@ -11832,13 +11832,13 @@
"11635"
],
"x-ms-request-id": [
- "a763f754-5d46-4501-8e73-b25c8bdce54a"
+ "9a2b6e66-e3c3-4636-8f46-175b1fb1e355"
],
"x-ms-correlation-request-id": [
- "a763f754-5d46-4501-8e73-b25c8bdce54a"
+ "9a2b6e66-e3c3-4636-8f46-175b1fb1e355"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224703Z:a763f754-5d46-4501-8e73-b25c8bdce54a"
+ "NORTHCENTRALUS:20200514T213351Z:9a2b6e66-e3c3-4636-8f46-175b1fb1e355"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11847,7 +11847,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:03 GMT"
+ "Thu, 14 May 2020 21:33:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11862,17 +11862,17 @@
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:46:51.5509306Z\",\r\n \"duration\": \"PT1M4.0552306S\",\r\n \"trackingId\": \"d9d0cc1c-120e-4284-8829-2caa07101594\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "786180ce-9d4c-4add-ba2a-80c5434c587f"
+ "3f0c6721-39e3-4257-a01e-2ce899a3d820"
],
"Accept-Language": [
"en-US"
@@ -11895,13 +11895,13 @@
"11633"
],
"x-ms-request-id": [
- "1e5b31a2-414c-43ef-b2c9-fd29cdb6f6f6"
+ "55b56e60-d7e4-4f41-a159-754fef3bb717"
],
"x-ms-correlation-request-id": [
- "1e5b31a2-414c-43ef-b2c9-fd29cdb6f6f6"
+ "55b56e60-d7e4-4f41-a159-754fef3bb717"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224704Z:1e5b31a2-414c-43ef-b2c9-fd29cdb6f6f6"
+ "NORTHCENTRALUS:20200514T213351Z:55b56e60-d7e4-4f41-a159-754fef3bb717"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11910,7 +11910,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:03 GMT"
+ "Thu, 14 May 2020 21:33:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11919,23 +11919,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "70e223de-df8e-450d-985a-6462b0dda03d"
+ "b2309c7b-92ee-48ce-b871-d166f78fc05e"
],
"Accept-Language": [
"en-US"
@@ -11958,13 +11958,13 @@
"11631"
],
"x-ms-request-id": [
- "6425c158-6865-46f3-b728-c36c6ac8c07c"
+ "6d1cdbcc-f46b-4597-a06f-789b3863a431"
],
"x-ms-correlation-request-id": [
- "6425c158-6865-46f3-b728-c36c6ac8c07c"
+ "6d1cdbcc-f46b-4597-a06f-789b3863a431"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224704Z:6425c158-6865-46f3-b728-c36c6ac8c07c"
+ "NORTHCENTRALUS:20200514T213352Z:6d1cdbcc-f46b-4597-a06f-789b3863a431"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -11973,7 +11973,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:03 GMT"
+ "Thu, 14 May 2020 21:33:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -11982,23 +11982,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e27a5156-72c9-4d7d-8b38-6ebb9483b1a4"
+ "2736c5ed-cee0-4c39-863e-e4dec8fb9216"
],
"Accept-Language": [
"en-US"
@@ -12021,13 +12021,13 @@
"11629"
],
"x-ms-request-id": [
- "1a687808-56c0-4e6a-851d-d9f7257ce274"
+ "e34f7c0a-e5b0-456a-a3a4-4c0c712a6e56"
],
"x-ms-correlation-request-id": [
- "1a687808-56c0-4e6a-851d-d9f7257ce274"
+ "e34f7c0a-e5b0-456a-a3a4-4c0c712a6e56"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224705Z:1a687808-56c0-4e6a-851d-d9f7257ce274"
+ "NORTHCENTRALUS:20200514T213352Z:e34f7c0a-e5b0-456a-a3a4-4c0c712a6e56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12036,7 +12036,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:04 GMT"
+ "Thu, 14 May 2020 21:33:51 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12045,23 +12045,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "777d6e9d-84d2-44bf-8bd5-dd1241312095"
+ "28bdf76e-8e59-494a-8f8e-e29bec426ac7"
],
"Accept-Language": [
"en-US"
@@ -12084,13 +12084,13 @@
"11627"
],
"x-ms-request-id": [
- "c90357c8-caf2-4543-a32e-0a340d46d2a9"
+ "b268e043-2474-4e14-aeef-613e4b0d5017"
],
"x-ms-correlation-request-id": [
- "c90357c8-caf2-4543-a32e-0a340d46d2a9"
+ "b268e043-2474-4e14-aeef-613e4b0d5017"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224705Z:c90357c8-caf2-4543-a32e-0a340d46d2a9"
+ "NORTHCENTRALUS:20200514T213353Z:b268e043-2474-4e14-aeef-613e4b0d5017"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12099,7 +12099,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:04 GMT"
+ "Thu, 14 May 2020 21:33:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12108,23 +12108,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff7afa0d-2761-43e7-96aa-95bf6e563267"
+ "d43f5cc4-d296-4dd0-a8f5-a4406203d774"
],
"Accept-Language": [
"en-US"
@@ -12147,13 +12147,13 @@
"11625"
],
"x-ms-request-id": [
- "8cbeb189-ee3d-4bf5-9038-79be133c3d10"
+ "eb2d5633-263f-42c8-9919-c4cc5d79f9a5"
],
"x-ms-correlation-request-id": [
- "8cbeb189-ee3d-4bf5-9038-79be133c3d10"
+ "eb2d5633-263f-42c8-9919-c4cc5d79f9a5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224705Z:8cbeb189-ee3d-4bf5-9038-79be133c3d10"
+ "NORTHCENTRALUS:20200514T213353Z:eb2d5633-263f-42c8-9919-c4cc5d79f9a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12162,7 +12162,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:04 GMT"
+ "Thu, 14 May 2020 21:33:52 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12171,23 +12171,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c72194a7-0f65-45d9-8923-68783f71786e"
+ "80cefcd5-4a1b-4c6d-9a0b-59061379d68c"
],
"Accept-Language": [
"en-US"
@@ -12210,13 +12210,13 @@
"11623"
],
"x-ms-request-id": [
- "73f59502-be2e-46eb-a11f-da4556c9b28e"
+ "fcd17a69-cb31-4644-bba0-18b9e76a41bb"
],
"x-ms-correlation-request-id": [
- "73f59502-be2e-46eb-a11f-da4556c9b28e"
+ "fcd17a69-cb31-4644-bba0-18b9e76a41bb"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224706Z:73f59502-be2e-46eb-a11f-da4556c9b28e"
+ "NORTHCENTRALUS:20200514T213353Z:fcd17a69-cb31-4644-bba0-18b9e76a41bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12225,7 +12225,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:05 GMT"
+ "Thu, 14 May 2020 21:33:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12234,23 +12234,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e6bffb5b-d56f-428b-93df-f77506f7961c"
+ "49727d1d-1c83-40a2-967b-bcdb09342134"
],
"Accept-Language": [
"en-US"
@@ -12273,13 +12273,13 @@
"11621"
],
"x-ms-request-id": [
- "e2f325f9-f853-4bfd-9366-154d2dbbd698"
+ "bee4fe49-b3aa-4bd7-b11b-60ded72c8570"
],
"x-ms-correlation-request-id": [
- "e2f325f9-f853-4bfd-9366-154d2dbbd698"
+ "bee4fe49-b3aa-4bd7-b11b-60ded72c8570"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224706Z:e2f325f9-f853-4bfd-9366-154d2dbbd698"
+ "NORTHCENTRALUS:20200514T213354Z:bee4fe49-b3aa-4bd7-b11b-60ded72c8570"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12288,7 +12288,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:05 GMT"
+ "Thu, 14 May 2020 21:33:53 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12297,23 +12297,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7d951fe6-6401-4816-97d1-f4f34aa97a8f"
+ "50c082fe-d3b3-491b-9078-1f3612577140"
],
"Accept-Language": [
"en-US"
@@ -12336,13 +12336,13 @@
"11619"
],
"x-ms-request-id": [
- "42e4be44-6fd6-4608-ae82-ff81e8a18273"
+ "d43f2fa4-5a78-4cfc-9cf6-50056e4fbe86"
],
"x-ms-correlation-request-id": [
- "42e4be44-6fd6-4608-ae82-ff81e8a18273"
+ "d43f2fa4-5a78-4cfc-9cf6-50056e4fbe86"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224706Z:42e4be44-6fd6-4608-ae82-ff81e8a18273"
+ "NORTHCENTRALUS:20200514T213354Z:d43f2fa4-5a78-4cfc-9cf6-50056e4fbe86"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12351,7 +12351,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:06 GMT"
+ "Thu, 14 May 2020 21:33:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12360,23 +12360,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dafc8957-3dfa-4f89-abcb-83590fc9a9c3"
+ "c3c3bbc7-3d08-459f-876c-af1818df2c96"
],
"Accept-Language": [
"en-US"
@@ -12399,13 +12399,13 @@
"11617"
],
"x-ms-request-id": [
- "8a3948db-d715-40c1-babf-9f6633899da4"
+ "86910dbd-064a-4d9c-89f5-0a01b3d4f267"
],
"x-ms-correlation-request-id": [
- "8a3948db-d715-40c1-babf-9f6633899da4"
+ "86910dbd-064a-4d9c-89f5-0a01b3d4f267"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224707Z:8a3948db-d715-40c1-babf-9f6633899da4"
+ "NORTHCENTRALUS:20200514T213355Z:86910dbd-064a-4d9c-89f5-0a01b3d4f267"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12414,7 +12414,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:06 GMT"
+ "Thu, 14 May 2020 21:33:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12423,23 +12423,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e72a3cee-857e-4ed9-98e1-556dc824b830"
+ "254c5f28-a84e-41e4-bd73-e2f60b18ee22"
],
"Accept-Language": [
"en-US"
@@ -12462,13 +12462,13 @@
"11615"
],
"x-ms-request-id": [
- "bee76889-3490-43a1-a289-40082e21d08f"
+ "b47b409d-b0c6-42d7-ae9a-8fe2f0f9d0d7"
],
"x-ms-correlation-request-id": [
- "bee76889-3490-43a1-a289-40082e21d08f"
+ "b47b409d-b0c6-42d7-ae9a-8fe2f0f9d0d7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224707Z:bee76889-3490-43a1-a289-40082e21d08f"
+ "NORTHCENTRALUS:20200514T213355Z:b47b409d-b0c6-42d7-ae9a-8fe2f0f9d0d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12477,7 +12477,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:06 GMT"
+ "Thu, 14 May 2020 21:33:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12486,23 +12486,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59d9b783-15cc-4cbe-b332-86ae2e568897"
+ "1f626f56-1048-4155-87ed-0d75ed57744a"
],
"Accept-Language": [
"en-US"
@@ -12525,13 +12525,13 @@
"11613"
],
"x-ms-request-id": [
- "300de483-7764-44a0-98b6-f832eb40c65f"
+ "058a2523-612b-4516-994a-40e19b5f52f3"
],
"x-ms-correlation-request-id": [
- "300de483-7764-44a0-98b6-f832eb40c65f"
+ "058a2523-612b-4516-994a-40e19b5f52f3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224708Z:300de483-7764-44a0-98b6-f832eb40c65f"
+ "NORTHCENTRALUS:20200514T213356Z:058a2523-612b-4516-994a-40e19b5f52f3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12540,7 +12540,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:07 GMT"
+ "Thu, 14 May 2020 21:33:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12549,23 +12549,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "944e883a-8537-4f41-b71b-e5faa4cce8a6"
+ "c0b87a49-8aea-4f9a-8431-01983b13f9de"
],
"Accept-Language": [
"en-US"
@@ -12588,13 +12588,13 @@
"11611"
],
"x-ms-request-id": [
- "ed3de31c-a641-478c-b670-a66ee91ea1b7"
+ "8e9091cc-dd94-43bf-a51c-9b80d9f39548"
],
"x-ms-correlation-request-id": [
- "ed3de31c-a641-478c-b670-a66ee91ea1b7"
+ "8e9091cc-dd94-43bf-a51c-9b80d9f39548"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224708Z:ed3de31c-a641-478c-b670-a66ee91ea1b7"
+ "NORTHCENTRALUS:20200514T213356Z:8e9091cc-dd94-43bf-a51c-9b80d9f39548"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12603,7 +12603,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:07 GMT"
+ "Thu, 14 May 2020 21:33:55 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12612,23 +12612,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2ee8075-bc00-4250-b250-74083ea8d225"
+ "ee9004f8-610f-4641-9545-8c03d727f013"
],
"Accept-Language": [
"en-US"
@@ -12651,13 +12651,13 @@
"11609"
],
"x-ms-request-id": [
- "d3b96224-10b0-4573-ab3c-7220075eac70"
+ "737a87ba-b957-4247-be08-eebfbbc26d82"
],
"x-ms-correlation-request-id": [
- "d3b96224-10b0-4573-ab3c-7220075eac70"
+ "737a87ba-b957-4247-be08-eebfbbc26d82"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224708Z:d3b96224-10b0-4573-ab3c-7220075eac70"
+ "NORTHCENTRALUS:20200514T213357Z:737a87ba-b957-4247-be08-eebfbbc26d82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12666,7 +12666,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:07 GMT"
+ "Thu, 14 May 2020 21:33:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12675,23 +12675,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23c83c57-648f-42f7-851b-53149532d413"
+ "f7bae8c4-1760-4749-90ab-39de3704db6a"
],
"Accept-Language": [
"en-US"
@@ -12714,13 +12714,13 @@
"11607"
],
"x-ms-request-id": [
- "ccc4088d-1764-43ec-ad94-4799e1136c49"
+ "dcc73386-f2c3-453e-b9f7-70bce787f255"
],
"x-ms-correlation-request-id": [
- "ccc4088d-1764-43ec-ad94-4799e1136c49"
+ "dcc73386-f2c3-453e-b9f7-70bce787f255"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224709Z:ccc4088d-1764-43ec-ad94-4799e1136c49"
+ "NORTHCENTRALUS:20200514T213357Z:dcc73386-f2c3-453e-b9f7-70bce787f255"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12729,7 +12729,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:08 GMT"
+ "Thu, 14 May 2020 21:33:56 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12738,23 +12738,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5def7955-808f-48be-98cd-c56c998e62ac"
+ "8117f1a6-fc91-4963-9619-d87aaf7ea0b4"
],
"Accept-Language": [
"en-US"
@@ -12777,13 +12777,13 @@
"11605"
],
"x-ms-request-id": [
- "64deaade-0496-40de-acb2-a0f8f9bf821e"
+ "31dcdde2-fe30-4bac-a454-465b98be248b"
],
"x-ms-correlation-request-id": [
- "64deaade-0496-40de-acb2-a0f8f9bf821e"
+ "31dcdde2-fe30-4bac-a454-465b98be248b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224709Z:64deaade-0496-40de-acb2-a0f8f9bf821e"
+ "NORTHCENTRALUS:20200514T213358Z:31dcdde2-fe30-4bac-a454-465b98be248b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12792,7 +12792,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:08 GMT"
+ "Thu, 14 May 2020 21:33:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12801,23 +12801,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:47.5475204Z\",\r\n \"duration\": \"PT1M14.242201S\",\r\n \"trackingId\": \"648293ed-fe68-4468-a3c4-6577bfff1b67\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb1be737-3116-4092-a62b-119726cfd949"
+ "fd708cb4-671b-4417-800a-271f57875b3b"
],
"Accept-Language": [
"en-US"
@@ -12840,13 +12840,13 @@
"11603"
],
"x-ms-request-id": [
- "9d889fe6-5d52-468c-8c4a-0f3248c01cd4"
+ "83fe10f7-9f2f-4860-87fa-0cdf41aeb318"
],
"x-ms-correlation-request-id": [
- "9d889fe6-5d52-468c-8c4a-0f3248c01cd4"
+ "83fe10f7-9f2f-4860-87fa-0cdf41aeb318"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224710Z:9d889fe6-5d52-468c-8c4a-0f3248c01cd4"
+ "NORTHCENTRALUS:20200514T213358Z:83fe10f7-9f2f-4860-87fa-0cdf41aeb318"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12855,7 +12855,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:09 GMT"
+ "Thu, 14 May 2020 21:33:57 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12864,23 +12864,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "625480e7-4667-4448-9fcb-b4ddb4ba5ece"
+ "940a48b0-7cb9-48a8-8232-5466b26d61ee"
],
"Accept-Language": [
"en-US"
@@ -12903,13 +12903,13 @@
"11601"
],
"x-ms-request-id": [
- "8de2f03f-685f-48ad-98de-076702b765e6"
+ "18127670-4e8c-4161-b74e-e1378e1c0370"
],
"x-ms-correlation-request-id": [
- "8de2f03f-685f-48ad-98de-076702b765e6"
+ "18127670-4e8c-4161-b74e-e1378e1c0370"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224710Z:8de2f03f-685f-48ad-98de-076702b765e6"
+ "NORTHCENTRALUS:20200514T213358Z:18127670-4e8c-4161-b74e-e1378e1c0370"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12918,7 +12918,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:09 GMT"
+ "Thu, 14 May 2020 21:33:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12927,23 +12927,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "928a6bfa-fc2d-4409-b65f-0e4ae7f365f1"
+ "cc490602-ca9b-44c2-8681-56665356a84e"
],
"Accept-Language": [
"en-US"
@@ -12966,13 +12966,13 @@
"11599"
],
"x-ms-request-id": [
- "54be2150-2aae-4c43-83b7-5f211fe59d0c"
+ "799f0097-3eba-4dbe-a6d3-c22bbcb1e73f"
],
"x-ms-correlation-request-id": [
- "54be2150-2aae-4c43-83b7-5f211fe59d0c"
+ "799f0097-3eba-4dbe-a6d3-c22bbcb1e73f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224710Z:54be2150-2aae-4c43-83b7-5f211fe59d0c"
+ "NORTHCENTRALUS:20200514T213359Z:799f0097-3eba-4dbe-a6d3-c22bbcb1e73f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -12981,7 +12981,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:09 GMT"
+ "Thu, 14 May 2020 21:33:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -12990,23 +12990,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f525fd5a-6049-4413-81d7-696a6713d0bd"
+ "37faf242-a99d-45ed-ba0e-3f44be233ae6"
],
"Accept-Language": [
"en-US"
@@ -13029,13 +13029,13 @@
"11597"
],
"x-ms-request-id": [
- "3cca86dd-860e-4e4c-8e80-968bf24ddb1d"
+ "cc736585-6a70-4d2e-9793-684f8549537c"
],
"x-ms-correlation-request-id": [
- "3cca86dd-860e-4e4c-8e80-968bf24ddb1d"
+ "cc736585-6a70-4d2e-9793-684f8549537c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224711Z:3cca86dd-860e-4e4c-8e80-968bf24ddb1d"
+ "NORTHCENTRALUS:20200514T213359Z:cc736585-6a70-4d2e-9793-684f8549537c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13044,7 +13044,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:10 GMT"
+ "Thu, 14 May 2020 21:33:58 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13053,23 +13053,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "487bf5f2-b107-4fa5-9cf7-a712033a7d46"
+ "55ec7a68-483b-4e1f-983e-2217413df1db"
],
"Accept-Language": [
"en-US"
@@ -13092,13 +13092,13 @@
"11595"
],
"x-ms-request-id": [
- "30fb84e9-e70b-4861-bc40-ba796a2db64a"
+ "21d322b0-1d52-43a1-abd1-9bcebc6526e8"
],
"x-ms-correlation-request-id": [
- "30fb84e9-e70b-4861-bc40-ba796a2db64a"
+ "21d322b0-1d52-43a1-abd1-9bcebc6526e8"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224711Z:30fb84e9-e70b-4861-bc40-ba796a2db64a"
+ "NORTHCENTRALUS:20200514T213400Z:21d322b0-1d52-43a1-abd1-9bcebc6526e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13107,7 +13107,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:10 GMT"
+ "Thu, 14 May 2020 21:33:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13116,23 +13116,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b98e96b-b444-43a2-98b8-69189d5f1695"
+ "d32de091-10bf-4610-83c5-7e34185bccc7"
],
"Accept-Language": [
"en-US"
@@ -13155,13 +13155,13 @@
"11593"
],
"x-ms-request-id": [
- "627bb4e0-80a2-4fe6-8fd3-e46f92fba417"
+ "0e778650-08e5-433f-bf98-74666dceec8e"
],
"x-ms-correlation-request-id": [
- "627bb4e0-80a2-4fe6-8fd3-e46f92fba417"
+ "0e778650-08e5-433f-bf98-74666dceec8e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224711Z:627bb4e0-80a2-4fe6-8fd3-e46f92fba417"
+ "NORTHCENTRALUS:20200514T213400Z:0e778650-08e5-433f-bf98-74666dceec8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13170,7 +13170,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:10 GMT"
+ "Thu, 14 May 2020 21:33:59 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13179,23 +13179,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40bde52c-f3ca-4322-8ad9-babaa62970aa"
+ "cd510bab-fda9-40ba-99a9-656409bdf757"
],
"Accept-Language": [
"en-US"
@@ -13218,13 +13218,13 @@
"11591"
],
"x-ms-request-id": [
- "487e40b8-eebe-4d26-861d-05ee830df68f"
+ "52eb5b0a-1ff8-4831-80e7-7cf76f05c253"
],
"x-ms-correlation-request-id": [
- "487e40b8-eebe-4d26-861d-05ee830df68f"
+ "52eb5b0a-1ff8-4831-80e7-7cf76f05c253"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224712Z:487e40b8-eebe-4d26-861d-05ee830df68f"
+ "NORTHCENTRALUS:20200514T213401Z:52eb5b0a-1ff8-4831-80e7-7cf76f05c253"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13233,7 +13233,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:11 GMT"
+ "Thu, 14 May 2020 21:34:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13242,23 +13242,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4dc779f5-144e-44c9-8994-c6ebdeb95491"
+ "8757b75f-8aa1-4cff-bb54-de496fd83884"
],
"Accept-Language": [
"en-US"
@@ -13281,13 +13281,13 @@
"11589"
],
"x-ms-request-id": [
- "abd361e3-1a96-4838-8907-f9abc0976da7"
+ "e4957488-4d36-4cc7-b80d-050e168d2c24"
],
"x-ms-correlation-request-id": [
- "abd361e3-1a96-4838-8907-f9abc0976da7"
+ "e4957488-4d36-4cc7-b80d-050e168d2c24"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224712Z:abd361e3-1a96-4838-8907-f9abc0976da7"
+ "NORTHCENTRALUS:20200514T213401Z:e4957488-4d36-4cc7-b80d-050e168d2c24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13296,7 +13296,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:11 GMT"
+ "Thu, 14 May 2020 21:34:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13305,23 +13305,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d138fafc-da59-4efb-9a72-e0371f0dfb77"
+ "8939d15e-8de8-4223-ba98-c64ca47f4e04"
],
"Accept-Language": [
"en-US"
@@ -13344,13 +13344,13 @@
"11587"
],
"x-ms-request-id": [
- "75f50bf2-68c3-4581-9a0f-9af892744f49"
+ "7586cd1b-7b88-4598-961d-54e31e6c22b6"
],
"x-ms-correlation-request-id": [
- "75f50bf2-68c3-4581-9a0f-9af892744f49"
+ "7586cd1b-7b88-4598-961d-54e31e6c22b6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224713Z:75f50bf2-68c3-4581-9a0f-9af892744f49"
+ "NORTHCENTRALUS:20200514T213401Z:7586cd1b-7b88-4598-961d-54e31e6c22b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13359,7 +13359,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:12 GMT"
+ "Thu, 14 May 2020 21:34:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13368,23 +13368,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9943ece4-c683-4066-b57f-64c532c05e4e"
+ "f4e12476-cb39-4590-a27b-a431b2ac6c18"
],
"Accept-Language": [
"en-US"
@@ -13407,13 +13407,13 @@
"11585"
],
"x-ms-request-id": [
- "5a5e5677-0422-4254-ac68-984dc69bf483"
+ "a4a87516-1d88-47cc-8fe8-2c889f3b0666"
],
"x-ms-correlation-request-id": [
- "5a5e5677-0422-4254-ac68-984dc69bf483"
+ "a4a87516-1d88-47cc-8fe8-2c889f3b0666"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224713Z:5a5e5677-0422-4254-ac68-984dc69bf483"
+ "NORTHCENTRALUS:20200514T213402Z:a4a87516-1d88-47cc-8fe8-2c889f3b0666"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13422,7 +13422,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:12 GMT"
+ "Thu, 14 May 2020 21:34:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13431,23 +13431,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ba4f3d1-ca6e-4432-902c-e799f517def8"
+ "61e3e713-dafa-46f2-8534-5b71257cc994"
],
"Accept-Language": [
"en-US"
@@ -13470,13 +13470,13 @@
"11583"
],
"x-ms-request-id": [
- "5975a4f7-6c3b-4661-a66a-ff96dd4cd092"
+ "d6dab0d5-5499-4d2c-a7de-f5dcbee8da82"
],
"x-ms-correlation-request-id": [
- "5975a4f7-6c3b-4661-a66a-ff96dd4cd092"
+ "d6dab0d5-5499-4d2c-a7de-f5dcbee8da82"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224713Z:5975a4f7-6c3b-4661-a66a-ff96dd4cd092"
+ "NORTHCENTRALUS:20200514T213402Z:d6dab0d5-5499-4d2c-a7de-f5dcbee8da82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13485,7 +13485,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:12 GMT"
+ "Thu, 14 May 2020 21:34:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13494,23 +13494,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e7f4237-f4af-4cff-a816-e466a5db91d9"
+ "fcca2348-f44c-4997-b14a-13bddb0f76a2"
],
"Accept-Language": [
"en-US"
@@ -13533,13 +13533,13 @@
"11581"
],
"x-ms-request-id": [
- "356bc1c7-7293-44f4-874e-8a9f5ee72c9d"
+ "8895e602-66c3-4fc1-911d-9ac6df935c0b"
],
"x-ms-correlation-request-id": [
- "356bc1c7-7293-44f4-874e-8a9f5ee72c9d"
+ "8895e602-66c3-4fc1-911d-9ac6df935c0b"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224714Z:356bc1c7-7293-44f4-874e-8a9f5ee72c9d"
+ "NORTHCENTRALUS:20200514T213403Z:8895e602-66c3-4fc1-911d-9ac6df935c0b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13548,7 +13548,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:14 GMT"
+ "Thu, 14 May 2020 21:34:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13557,23 +13557,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3808a78a-99aa-47c2-801c-2d0b72d02bef"
+ "dd44a672-c856-443d-82bf-0ff5c94d76fc"
],
"Accept-Language": [
"en-US"
@@ -13596,13 +13596,13 @@
"11579"
],
"x-ms-request-id": [
- "7b8ba533-cd03-4869-a0b0-236d2bed565a"
+ "09d93fdb-a08d-4a92-a4de-41f6acaef90e"
],
"x-ms-correlation-request-id": [
- "7b8ba533-cd03-4869-a0b0-236d2bed565a"
+ "09d93fdb-a08d-4a92-a4de-41f6acaef90e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224714Z:7b8ba533-cd03-4869-a0b0-236d2bed565a"
+ "NORTHCENTRALUS:20200514T213403Z:09d93fdb-a08d-4a92-a4de-41f6acaef90e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13611,7 +13611,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:14 GMT"
+ "Thu, 14 May 2020 21:34:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13620,23 +13620,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14e9012e-0308-4195-b821-2f921e6e08a4"
+ "65b2b5c5-d179-4f65-9d8a-034ba9daefeb"
],
"Accept-Language": [
"en-US"
@@ -13659,13 +13659,13 @@
"11577"
],
"x-ms-request-id": [
- "f5ecbb89-c73f-4e30-b3b1-317dc3bc322d"
+ "74dc2a9c-20da-43c2-9dc8-c97e4739b9d7"
],
"x-ms-correlation-request-id": [
- "f5ecbb89-c73f-4e30-b3b1-317dc3bc322d"
+ "74dc2a9c-20da-43c2-9dc8-c97e4739b9d7"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224714Z:f5ecbb89-c73f-4e30-b3b1-317dc3bc322d"
+ "NORTHCENTRALUS:20200514T213404Z:74dc2a9c-20da-43c2-9dc8-c97e4739b9d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13674,7 +13674,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:14 GMT"
+ "Thu, 14 May 2020 21:34:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13683,23 +13683,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41ea0f33-4c07-424c-aece-705dd6b3cae7"
+ "3eeed323-1ac0-447f-adc6-845423d8687f"
],
"Accept-Language": [
"en-US"
@@ -13722,13 +13722,13 @@
"11575"
],
"x-ms-request-id": [
- "e3b3eca3-c7a3-4397-975c-00327cd9a457"
+ "92a56620-b135-490d-a071-444ff5c82557"
],
"x-ms-correlation-request-id": [
- "e3b3eca3-c7a3-4397-975c-00327cd9a457"
+ "92a56620-b135-490d-a071-444ff5c82557"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224715Z:e3b3eca3-c7a3-4397-975c-00327cd9a457"
+ "NORTHCENTRALUS:20200514T213404Z:92a56620-b135-490d-a071-444ff5c82557"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13737,7 +13737,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:15 GMT"
+ "Thu, 14 May 2020 21:34:03 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13746,23 +13746,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4024b7f8-3889-4c8c-b2f0-17c28f1b06a6"
+ "50a89169-7ab4-4a83-9bff-934f29f8a2f6"
],
"Accept-Language": [
"en-US"
@@ -13785,13 +13785,13 @@
"11573"
],
"x-ms-request-id": [
- "d19d6aa0-afef-4e66-a85a-f6e4f494c395"
+ "755eee1f-34eb-41b5-a588-0b15a438a5a1"
],
"x-ms-correlation-request-id": [
- "d19d6aa0-afef-4e66-a85a-f6e4f494c395"
+ "755eee1f-34eb-41b5-a588-0b15a438a5a1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224715Z:d19d6aa0-afef-4e66-a85a-f6e4f494c395"
+ "NORTHCENTRALUS:20200514T213405Z:755eee1f-34eb-41b5-a588-0b15a438a5a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13800,7 +13800,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:15 GMT"
+ "Thu, 14 May 2020 21:34:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13809,23 +13809,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98a5a9f5-421b-4fe3-b607-8057641826fd"
+ "9fad0f92-3144-4883-9fa5-59791e096a34"
],
"Accept-Language": [
"en-US"
@@ -13848,13 +13848,13 @@
"11571"
],
"x-ms-request-id": [
- "2ad50c46-12d3-4a94-96f8-ca902d597124"
+ "e7531c42-35b6-429a-a095-b9c4347c6ec2"
],
"x-ms-correlation-request-id": [
- "2ad50c46-12d3-4a94-96f8-ca902d597124"
+ "e7531c42-35b6-429a-a095-b9c4347c6ec2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224716Z:2ad50c46-12d3-4a94-96f8-ca902d597124"
+ "NORTHCENTRALUS:20200514T213405Z:e7531c42-35b6-429a-a095-b9c4347c6ec2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13863,7 +13863,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:16 GMT"
+ "Thu, 14 May 2020 21:34:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13872,23 +13872,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "608182d8-2a3a-43c2-8c46-4a09668116fc"
+ "ff4de7f4-bcda-4e3d-a33a-ce4bae5e6360"
],
"Accept-Language": [
"en-US"
@@ -13911,13 +13911,13 @@
"11569"
],
"x-ms-request-id": [
- "e871a895-9d0a-4c81-9d2c-5583c2018598"
+ "e2cea7b7-5ed4-4c5f-b385-7311e02db74d"
],
"x-ms-correlation-request-id": [
- "e871a895-9d0a-4c81-9d2c-5583c2018598"
+ "e2cea7b7-5ed4-4c5f-b385-7311e02db74d"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224716Z:e871a895-9d0a-4c81-9d2c-5583c2018598"
+ "NORTHCENTRALUS:20200514T213405Z:e2cea7b7-5ed4-4c5f-b385-7311e02db74d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13926,7 +13926,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:16 GMT"
+ "Thu, 14 May 2020 21:34:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13935,23 +13935,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a97edf2-888f-4641-be40-905a4c3bc08a"
+ "9b17d347-c877-47fa-b4ea-3fdb3cb90115"
],
"Accept-Language": [
"en-US"
@@ -13974,13 +13974,13 @@
"11567"
],
"x-ms-request-id": [
- "8b54b275-4b65-4bf7-8a77-1e7aa2bc8d71"
+ "dade3270-db06-4d0a-8bdf-ec558f9f2f0e"
],
"x-ms-correlation-request-id": [
- "8b54b275-4b65-4bf7-8a77-1e7aa2bc8d71"
+ "dade3270-db06-4d0a-8bdf-ec558f9f2f0e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224716Z:8b54b275-4b65-4bf7-8a77-1e7aa2bc8d71"
+ "NORTHCENTRALUS:20200514T213406Z:dade3270-db06-4d0a-8bdf-ec558f9f2f0e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -13989,7 +13989,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:16 GMT"
+ "Thu, 14 May 2020 21:34:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -13998,23 +13998,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f20895b4-e0c4-47db-aedd-2321ac0d7849"
+ "67dba6a2-93eb-4690-9f5a-1452c87f950a"
],
"Accept-Language": [
"en-US"
@@ -14037,13 +14037,13 @@
"11565"
],
"x-ms-request-id": [
- "fbaa348c-d96e-42ea-a4a7-3053fee8f5e9"
+ "4d40aeb6-9c79-4086-8ccd-7ae9b464ffdc"
],
"x-ms-correlation-request-id": [
- "fbaa348c-d96e-42ea-a4a7-3053fee8f5e9"
+ "4d40aeb6-9c79-4086-8ccd-7ae9b464ffdc"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224717Z:fbaa348c-d96e-42ea-a4a7-3053fee8f5e9"
+ "NORTHCENTRALUS:20200514T213406Z:4d40aeb6-9c79-4086-8ccd-7ae9b464ffdc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14052,7 +14052,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:17 GMT"
+ "Thu, 14 May 2020 21:34:06 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14061,23 +14061,23 @@
"-1"
],
"Content-Length": [
- "831"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:47:03.9782145Z\",\r\n \"duration\": \"PT1M16.4825145S\",\r\n \"trackingId\": \"10ce8e30-7a78-4eab-a177-c9d4e28f5cf1\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c853bb6-97ae-479f-9c7e-6db9bda791b2"
+ "10b6e447-a8ce-4aac-bc01-32c9bc3fec91"
],
"Accept-Language": [
"en-US"
@@ -14100,13 +14100,13 @@
"11563"
],
"x-ms-request-id": [
- "8360087b-0b20-4696-aa01-e0917765b656"
+ "9960485c-8eb9-4a0a-8538-64ac8d38e2f2"
],
"x-ms-correlation-request-id": [
- "8360087b-0b20-4696-aa01-e0917765b656"
+ "9960485c-8eb9-4a0a-8538-64ac8d38e2f2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224717Z:8360087b-0b20-4696-aa01-e0917765b656"
+ "NORTHCENTRALUS:20200514T213407Z:9960485c-8eb9-4a0a-8538-64ac8d38e2f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14115,7 +14115,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:17 GMT"
+ "Thu, 14 May 2020 21:34:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14124,23 +14124,23 @@
"-1"
],
"Content-Length": [
- "828"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:47:17.3961993Z\",\r\n \"duration\": \"PT1M29.9004993S\",\r\n \"trackingId\": \"076ce0c3-bedd-4b96-84e2-587c6900d5d3\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/deployments/ps8950/operations?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9kZXBsb3ltZW50cy9wczg5NTAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5096cc67-b659-4017-949d-47030fe742d1"
+ "7a1e29e0-ab83-4ec6-9bde-6da84725fc71"
],
"Accept-Language": [
"en-US"
@@ -14163,13 +14163,13 @@
"11561"
],
"x-ms-request-id": [
- "9a84852c-9b2c-4239-a016-2f76c66a0cbf"
+ "c3bded87-7f38-4ab6-9f85-20e98a3a98d4"
],
"x-ms-correlation-request-id": [
- "9a84852c-9b2c-4239-a016-2f76c66a0cbf"
+ "c3bded87-7f38-4ab6-9f85-20e98a3a98d4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224718Z:9a84852c-9b2c-4239-a016-2f76c66a0cbf"
+ "NORTHCENTRALUS:20200514T213407Z:c3bded87-7f38-4ab6-9f85-20e98a3a98d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14178,7 +14178,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:47:18 GMT"
+ "Thu, 14 May 2020 21:34:07 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14187,23 +14187,23 @@
"-1"
],
"Content-Length": [
- "1287"
+ "830"
],
"Retry-After": [
"0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/4AB3A2B2CF0EB6D8\",\r\n \"operationId\": \"4AB3A2B2CF0EB6D8\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:47:17.3961993Z\",\r\n \"duration\": \"PT1M29.9004993S\",\r\n \"trackingId\": \"076ce0c3-bedd-4b96-84e2-587c6900d5d3\",\r\n \"serviceRequestId\": \"ac17ff7c-026c-4708-ad9c-384c2e015801\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950/operations/08586121969402341052\",\r\n \"operationId\": \"08586121969402341052\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-13T22:47:17.7282538Z\",\r\n \"duration\": \"PT0.1663544S\",\r\n \"trackingId\": \"d01050e2-6c61-4e4f-83fe-f946ee2d27db\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20563082-69d8-4318-bdbd-aa9290cb6662"
+ "328c5267-0fff-4b73-9645-8613f233c8b0"
],
"Accept-Language": [
"en-US"
@@ -14222,20 +14222,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11559"
],
"x-ms-request-id": [
- "c8e6fdad-20c8-4a79-a979-cf1e3b60aff0"
+ "115bde9d-a310-4b2b-80f3-e44497c0f6a9"
],
"x-ms-correlation-request-id": [
- "c8e6fdad-20c8-4a79-a979-cf1e3b60aff0"
+ "115bde9d-a310-4b2b-80f3-e44497c0f6a9"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224547Z:c8e6fdad-20c8-4a79-a979-cf1e3b60aff0"
+ "NORTHCENTRALUS:20200514T213408Z:115bde9d-a310-4b2b-80f3-e44497c0f6a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14244,7 +14241,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:46 GMT"
+ "Thu, 14 May 2020 21:34:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14253,20 +14250,23 @@
"-1"
],
"Content-Length": [
- "1323"
+ "830"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-05-13T22:45:46.43538Z\",\r\n \"duration\": \"PT1.1918517S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e54090b-9426-4e34-a008-292b9a2ea3b3"
+ "8b123778-22a8-4a81-9f49-bc5ce22ad4f4"
],
"Accept-Language": [
"en-US"
@@ -14285,20 +14285,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11557"
],
"x-ms-request-id": [
- "d8b92f37-50de-444e-9793-2e18c6a88397"
+ "f0103bf2-15cc-430f-b09b-fa32a2a6ffaa"
],
"x-ms-correlation-request-id": [
- "d8b92f37-50de-444e-9793-2e18c6a88397"
+ "f0103bf2-15cc-430f-b09b-fa32a2a6ffaa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224547Z:d8b92f37-50de-444e-9793-2e18c6a88397"
+ "NORTHCENTRALUS:20200514T213408Z:f0103bf2-15cc-430f-b09b-fa32a2a6ffaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14307,7 +14304,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:46 GMT"
+ "Thu, 14 May 2020 21:34:08 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14316,20 +14313,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "830"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a3716b8-5bb7-4d98-a995-3b6acdb8f1da"
+ "1f765088-843c-499e-b954-84b17b09f67e"
],
"Accept-Language": [
"en-US"
@@ -14348,20 +14348,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11555"
],
"x-ms-request-id": [
- "d97bbe05-7eba-466a-bf9d-5017732a7c1b"
+ "0bd45a9f-c6a9-4308-9a4c-e6031564027c"
],
"x-ms-correlation-request-id": [
- "d97bbe05-7eba-466a-bf9d-5017732a7c1b"
+ "0bd45a9f-c6a9-4308-9a4c-e6031564027c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224548Z:d97bbe05-7eba-466a-bf9d-5017732a7c1b"
+ "NORTHCENTRALUS:20200514T213409Z:0bd45a9f-c6a9-4308-9a4c-e6031564027c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14370,7 +14367,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:47 GMT"
+ "Thu, 14 May 2020 21:34:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14379,20 +14376,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "830"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05004b21-f8e9-4d0b-b32f-0020bff39dc7"
+ "fd4de178-88ea-44b7-a713-588cd2ae6c0c"
],
"Accept-Language": [
"en-US"
@@ -14411,20 +14411,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11553"
],
"x-ms-request-id": [
- "8f9d7d5f-97e7-4e5a-94bd-3148f1710403"
+ "fa1471ae-badc-4f7b-9f0b-807a1432a64c"
],
"x-ms-correlation-request-id": [
- "8f9d7d5f-97e7-4e5a-94bd-3148f1710403"
+ "fa1471ae-badc-4f7b-9f0b-807a1432a64c"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224548Z:8f9d7d5f-97e7-4e5a-94bd-3148f1710403"
+ "NORTHCENTRALUS:20200514T213409Z:fa1471ae-badc-4f7b-9f0b-807a1432a64c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14433,7 +14430,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:47 GMT"
+ "Thu, 14 May 2020 21:34:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14442,20 +14439,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "830"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5c5c585-e43d-4653-a59c-b373318f06d7"
+ "0e456d99-f6e7-4d80-9ade-7cb81e2af5f4"
],
"Accept-Language": [
"en-US"
@@ -14474,20 +14474,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11551"
],
"x-ms-request-id": [
- "24bef0e6-e3ef-4ae1-9b0e-ab323ea44c10"
+ "f0917a6a-0109-4803-ac1d-3410010c7abd"
],
"x-ms-correlation-request-id": [
- "24bef0e6-e3ef-4ae1-9b0e-ab323ea44c10"
+ "f0917a6a-0109-4803-ac1d-3410010c7abd"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224548Z:24bef0e6-e3ef-4ae1-9b0e-ab323ea44c10"
+ "NORTHCENTRALUS:20200514T213409Z:f0917a6a-0109-4803-ac1d-3410010c7abd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14496,7 +14493,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:47 GMT"
+ "Thu, 14 May 2020 21:34:09 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14505,20 +14502,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "830"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:57.981329Z\",\r\n \"duration\": \"PT1M24.6760096S\",\r\n \"trackingId\": \"d0957d2b-f6ce-48a0-b9f5-16ad326a1a2e\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5d0a70b-3129-4d33-b455-ded326d3806e"
+ "3a9bf6b7-7813-41c6-a90e-7c7689f29b2e"
],
"Accept-Language": [
"en-US"
@@ -14537,20 +14537,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11549"
],
"x-ms-request-id": [
- "7cf5c0cf-4708-49f7-83e2-aa03a6864c1d"
+ "a9da01ed-3d0d-4efe-8a7d-c3f20ef81e6e"
],
"x-ms-correlation-request-id": [
- "7cf5c0cf-4708-49f7-83e2-aa03a6864c1d"
+ "a9da01ed-3d0d-4efe-8a7d-c3f20ef81e6e"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224549Z:7cf5c0cf-4708-49f7-83e2-aa03a6864c1d"
+ "NORTHCENTRALUS:20200514T213410Z:a9da01ed-3d0d-4efe-8a7d-c3f20ef81e6e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14559,7 +14556,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:49 GMT"
+ "Thu, 14 May 2020 21:34:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14568,20 +14565,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4710fb8c-65e6-413d-8fa0-14a229efd470"
+ "5fda9900-2273-40d0-a9f3-a5d62936e3d1"
],
"Accept-Language": [
"en-US"
@@ -14600,20 +14600,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11547"
],
"x-ms-request-id": [
- "226459e8-adc0-464d-a812-638a253f9d14"
+ "eec69a60-50f3-4af9-bc2a-56d0b4c6e076"
],
"x-ms-correlation-request-id": [
- "226459e8-adc0-464d-a812-638a253f9d14"
+ "eec69a60-50f3-4af9-bc2a-56d0b4c6e076"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224549Z:226459e8-adc0-464d-a812-638a253f9d14"
+ "NORTHCENTRALUS:20200514T213410Z:eec69a60-50f3-4af9-bc2a-56d0b4c6e076"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14622,7 +14619,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:49 GMT"
+ "Thu, 14 May 2020 21:34:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14631,20 +14628,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9343e3c6-96dc-4511-a7bf-d5934ce81e0d"
+ "cebfe033-3772-4769-980d-a0c502e5edf3"
],
"Accept-Language": [
"en-US"
@@ -14663,20 +14663,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11545"
],
"x-ms-request-id": [
- "a7557c24-0c1a-4899-8802-dc28e34eb594"
+ "78e4cc89-c14e-41a4-8b98-f35475092cf3"
],
"x-ms-correlation-request-id": [
- "a7557c24-0c1a-4899-8802-dc28e34eb594"
+ "78e4cc89-c14e-41a4-8b98-f35475092cf3"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224549Z:a7557c24-0c1a-4899-8802-dc28e34eb594"
+ "NORTHCENTRALUS:20200514T213411Z:78e4cc89-c14e-41a4-8b98-f35475092cf3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14685,7 +14682,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:49 GMT"
+ "Thu, 14 May 2020 21:34:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14694,20 +14691,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18a1c1de-5baf-49b2-a2b7-35301e784b60"
+ "0fd41964-57ec-48de-b62e-2820c74dab2a"
],
"Accept-Language": [
"en-US"
@@ -14726,20 +14726,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11543"
],
"x-ms-request-id": [
- "d9c23045-be8e-4afb-93a1-c0e88099cf6d"
+ "1da79634-8268-493e-b3ab-525a0ecd4dfa"
],
"x-ms-correlation-request-id": [
- "d9c23045-be8e-4afb-93a1-c0e88099cf6d"
+ "1da79634-8268-493e-b3ab-525a0ecd4dfa"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224550Z:d9c23045-be8e-4afb-93a1-c0e88099cf6d"
+ "NORTHCENTRALUS:20200514T213411Z:1da79634-8268-493e-b3ab-525a0ecd4dfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14748,7 +14745,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:50 GMT"
+ "Thu, 14 May 2020 21:34:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14757,20 +14754,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32f51898-23fa-45fc-a8e6-8345b4d446b3"
+ "47701f57-2e0a-43bd-9499-d7011baf76fc"
],
"Accept-Language": [
"en-US"
@@ -14789,20 +14789,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11541"
],
"x-ms-request-id": [
- "f8807754-1b40-4bb8-a92a-9cbbaca26feb"
+ "3e465096-9152-489a-9bf8-0a86fa59d264"
],
"x-ms-correlation-request-id": [
- "f8807754-1b40-4bb8-a92a-9cbbaca26feb"
+ "3e465096-9152-489a-9bf8-0a86fa59d264"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224550Z:f8807754-1b40-4bb8-a92a-9cbbaca26feb"
+ "NORTHCENTRALUS:20200514T213412Z:3e465096-9152-489a-9bf8-0a86fa59d264"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14811,7 +14808,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:50 GMT"
+ "Thu, 14 May 2020 21:34:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14820,20 +14817,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:47.4597428Z\",\r\n \"duration\": \"PT2.2162145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1df2a330-838a-4383-9c50-c716f1a0b224"
+ "307438e7-adfe-48d8-bb8e-078be8461150"
],
"Accept-Language": [
"en-US"
@@ -14852,20 +14852,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11539"
],
"x-ms-request-id": [
- "fcf60f05-917c-48be-adc0-fb69ebc034d0"
+ "5ef19a44-cf71-41b0-ac34-e71da20a40a1"
],
"x-ms-correlation-request-id": [
- "fcf60f05-917c-48be-adc0-fb69ebc034d0"
+ "5ef19a44-cf71-41b0-ac34-e71da20a40a1"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224551Z:fcf60f05-917c-48be-adc0-fb69ebc034d0"
+ "NORTHCENTRALUS:20200514T213412Z:5ef19a44-cf71-41b0-ac34-e71da20a40a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14874,7 +14871,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:51 GMT"
+ "Thu, 14 May 2020 21:34:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14883,20 +14880,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.0384428Z\",\r\n \"duration\": \"PT5.7949145S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "46b5fd1f-bd4c-41c1-9967-7cf702a12f27"
+ "4d758762-37e8-4d67-80ee-1ff6e469603e"
],
"Accept-Language": [
"en-US"
@@ -14915,20 +14915,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11537"
],
"x-ms-request-id": [
- "23704615-0492-4728-af42-3457be695243"
+ "4a213189-e2f4-48db-91b4-a0f1d3156647"
],
"x-ms-correlation-request-id": [
- "23704615-0492-4728-af42-3457be695243"
+ "4a213189-e2f4-48db-91b4-a0f1d3156647"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224551Z:23704615-0492-4728-af42-3457be695243"
+ "NORTHCENTRALUS:20200514T213413Z:4a213189-e2f4-48db-91b4-a0f1d3156647"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -14937,7 +14934,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:51 GMT"
+ "Thu, 14 May 2020 21:34:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -14946,20 +14943,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1101701Z\",\r\n \"duration\": \"PT5.8666418S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f29854d-a39c-414e-98ee-e9f9548be68b"
+ "e77f0b0e-32e4-4e47-8852-bfff68020cdd"
],
"Accept-Language": [
"en-US"
@@ -14978,20 +14978,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11535"
],
"x-ms-request-id": [
- "b98e7fb6-e96e-4361-b3d8-f607e10071a2"
+ "3ff61b47-6322-4017-9e78-0704e7b7e5e6"
],
"x-ms-correlation-request-id": [
- "b98e7fb6-e96e-4361-b3d8-f607e10071a2"
+ "3ff61b47-6322-4017-9e78-0704e7b7e5e6"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224551Z:b98e7fb6-e96e-4361-b3d8-f607e10071a2"
+ "NORTHCENTRALUS:20200514T213413Z:3ff61b47-6322-4017-9e78-0704e7b7e5e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15000,7 +14997,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:51 GMT"
+ "Thu, 14 May 2020 21:34:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15009,20 +15006,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1101701Z\",\r\n \"duration\": \"PT5.8666418S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ce050d1-e95f-4695-ac5a-4116b03b512b"
+ "a61ee907-7f1c-45d7-8fbb-d4eab2812fad"
],
"Accept-Language": [
"en-US"
@@ -15041,20 +15041,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11533"
],
"x-ms-request-id": [
- "8a5f5525-7037-49e4-85a3-5cb950e7b456"
+ "436133a9-3259-49f5-9df0-f170d0a907d4"
],
"x-ms-correlation-request-id": [
- "8a5f5525-7037-49e4-85a3-5cb950e7b456"
+ "436133a9-3259-49f5-9df0-f170d0a907d4"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224552Z:8a5f5525-7037-49e4-85a3-5cb950e7b456"
+ "NORTHCENTRALUS:20200514T213413Z:436133a9-3259-49f5-9df0-f170d0a907d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15063,7 +15060,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:52 GMT"
+ "Thu, 14 May 2020 21:34:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15072,20 +15069,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1101701Z\",\r\n \"duration\": \"PT5.8666418S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f236efec-3d90-4841-89ca-20e9d641bb3a"
+ "2cca660d-4e15-4c0c-86c1-80807d0adce4"
],
"Accept-Language": [
"en-US"
@@ -15104,20 +15104,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11531"
],
"x-ms-request-id": [
- "d5b24684-1570-49dd-b4ce-29fcb3159936"
+ "c8740894-ecdc-4882-9fe1-633392eb1734"
],
"x-ms-correlation-request-id": [
- "d5b24684-1570-49dd-b4ce-29fcb3159936"
+ "c8740894-ecdc-4882-9fe1-633392eb1734"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224552Z:d5b24684-1570-49dd-b4ce-29fcb3159936"
+ "NORTHCENTRALUS:20200514T213414Z:c8740894-ecdc-4882-9fe1-633392eb1734"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15126,7 +15123,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:52 GMT"
+ "Thu, 14 May 2020 21:34:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15135,20 +15132,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1101701Z\",\r\n \"duration\": \"PT5.8666418S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34b70c27-7247-419c-b17e-5aac1433b9ac"
+ "6b978f4a-1ec9-4887-8f20-572629af2d2f"
],
"Accept-Language": [
"en-US"
@@ -15167,20 +15167,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11529"
],
"x-ms-request-id": [
- "c15df089-9eb3-44fe-8942-baf00dd4d572"
+ "7786f8fd-64ea-4eea-b47f-ea6382cd7d19"
],
"x-ms-correlation-request-id": [
- "c15df089-9eb3-44fe-8942-baf00dd4d572"
+ "7786f8fd-64ea-4eea-b47f-ea6382cd7d19"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224553Z:c15df089-9eb3-44fe-8942-baf00dd4d572"
+ "NORTHCENTRALUS:20200514T213414Z:7786f8fd-64ea-4eea-b47f-ea6382cd7d19"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15189,7 +15186,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:52 GMT"
+ "Thu, 14 May 2020 21:34:14 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15198,20 +15195,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1101701Z\",\r\n \"duration\": \"PT5.8666418S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a95ba70-2c43-4905-a8e2-7893cb7f51d3"
+ "42746ffd-8918-447f-941b-0453888a4d85"
],
"Accept-Language": [
"en-US"
@@ -15230,20 +15230,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11527"
],
"x-ms-request-id": [
- "a7ad209b-0804-4338-9c44-284310962e6b"
+ "06cb48a1-8237-4791-948e-c75daa278b52"
],
"x-ms-correlation-request-id": [
- "a7ad209b-0804-4338-9c44-284310962e6b"
+ "06cb48a1-8237-4791-948e-c75daa278b52"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224553Z:a7ad209b-0804-4338-9c44-284310962e6b"
+ "NORTHCENTRALUS:20200514T213415Z:06cb48a1-8237-4791-948e-c75daa278b52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15252,7 +15249,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:53 GMT"
+ "Thu, 14 May 2020 21:34:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15261,20 +15258,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:51.1101701Z\",\r\n \"duration\": \"PT5.8666418S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fa29431-12c3-4ae5-8802-1c67f56f0c73"
+ "da7a1de5-b255-4a55-9194-3a8ce7b4d325"
],
"Accept-Language": [
"en-US"
@@ -15293,20 +15293,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11525"
],
"x-ms-request-id": [
- "b65de060-4442-4d37-b17c-85dae9e81906"
+ "a8731beb-20b7-4e0a-83dc-3dde73dc60f5"
],
"x-ms-correlation-request-id": [
- "b65de060-4442-4d37-b17c-85dae9e81906"
+ "a8731beb-20b7-4e0a-83dc-3dde73dc60f5"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224553Z:b65de060-4442-4d37-b17c-85dae9e81906"
+ "NORTHCENTRALUS:20200514T213415Z:a8731beb-20b7-4e0a-83dc-3dde73dc60f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15315,7 +15312,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:53 GMT"
+ "Thu, 14 May 2020 21:34:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15324,20 +15321,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5128592Z\",\r\n \"duration\": \"PT8.2693309S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "376f87af-6972-4064-b977-7a0b3ca76535"
+ "acde4119-fe2e-44e7-9276-5f34a2a72ae0"
],
"Accept-Language": [
"en-US"
@@ -15356,20 +15356,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11523"
],
"x-ms-request-id": [
- "2a93c1ea-e1ae-4b37-bea4-dca5f96ac83e"
+ "72e0dab8-4c16-4d89-b76d-b8339d4b1b0a"
],
"x-ms-correlation-request-id": [
- "2a93c1ea-e1ae-4b37-bea4-dca5f96ac83e"
+ "72e0dab8-4c16-4d89-b76d-b8339d4b1b0a"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224554Z:2a93c1ea-e1ae-4b37-bea4-dca5f96ac83e"
+ "NORTHCENTRALUS:20200514T213416Z:72e0dab8-4c16-4d89-b76d-b8339d4b1b0a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15378,7 +15375,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:53 GMT"
+ "Thu, 14 May 2020 21:34:15 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15387,20 +15384,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5128592Z\",\r\n \"duration\": \"PT8.2693309S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa2605f7-17db-40ae-94c1-34c0977ee216"
+ "ee004a80-c021-4784-ab43-dc72482d891c"
],
"Accept-Language": [
"en-US"
@@ -15419,20 +15419,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
+ "11521"
],
"x-ms-request-id": [
- "66fd55d1-f2e9-4384-a12b-4058599bc24c"
+ "286b4b16-041a-4f38-9aa4-75bcd082852f"
],
"x-ms-correlation-request-id": [
- "66fd55d1-f2e9-4384-a12b-4058599bc24c"
+ "286b4b16-041a-4f38-9aa4-75bcd082852f"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224554Z:66fd55d1-f2e9-4384-a12b-4058599bc24c"
+ "NORTHCENTRALUS:20200514T213416Z:286b4b16-041a-4f38-9aa4-75bcd082852f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15441,7 +15438,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:54 GMT"
+ "Thu, 14 May 2020 21:34:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15450,20 +15447,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5128592Z\",\r\n \"duration\": \"PT8.2693309S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8e9902f-7c0f-421b-a753-cfdeea5aa5bb"
+ "68e4592e-0a90-44ea-b321-1155e423baf7"
],
"Accept-Language": [
"en-US"
@@ -15482,20 +15482,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11519"
],
"x-ms-request-id": [
- "be742951-68c1-4c9e-a818-9cdde3281633"
+ "ce5dd2c4-6438-40e4-86b5-617d0e8c5176"
],
"x-ms-correlation-request-id": [
- "be742951-68c1-4c9e-a818-9cdde3281633"
+ "ce5dd2c4-6438-40e4-86b5-617d0e8c5176"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224554Z:be742951-68c1-4c9e-a818-9cdde3281633"
+ "NORTHCENTRALUS:20200514T213417Z:ce5dd2c4-6438-40e4-86b5-617d0e8c5176"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15504,7 +15501,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:54 GMT"
+ "Thu, 14 May 2020 21:34:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15513,20 +15510,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5128592Z\",\r\n \"duration\": \"PT8.2693309S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac7bcc62-d6b5-419e-b04d-cc9fc7a15227"
+ "8a6778e1-daf3-4339-ac61-878cbefce258"
],
"Accept-Language": [
"en-US"
@@ -15545,20 +15545,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11517"
],
"x-ms-request-id": [
- "1d5d30c0-a3b3-41a7-ad79-7ed2c1f466e8"
+ "3cbd6518-58ea-476d-b27d-bb4e81143c18"
],
"x-ms-correlation-request-id": [
- "1d5d30c0-a3b3-41a7-ad79-7ed2c1f466e8"
+ "3cbd6518-58ea-476d-b27d-bb4e81143c18"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224555Z:1d5d30c0-a3b3-41a7-ad79-7ed2c1f466e8"
+ "NORTHCENTRALUS:20200514T213417Z:3cbd6518-58ea-476d-b27d-bb4e81143c18"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15567,7 +15564,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:55 GMT"
+ "Thu, 14 May 2020 21:34:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15576,20 +15573,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5128592Z\",\r\n \"duration\": \"PT8.2693309S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7bfdaa61-f3aa-4b11-855e-3c5a8ac45e03"
+ "2569afb6-2e30-4a21-ad54-276dfba218d7"
],
"Accept-Language": [
"en-US"
@@ -15608,20 +15608,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11515"
],
"x-ms-request-id": [
- "351be7c8-b854-406c-90ad-e1514593bc8b"
+ "ba2c998a-8dfe-454e-8590-a1210cf117c2"
],
"x-ms-correlation-request-id": [
- "351be7c8-b854-406c-90ad-e1514593bc8b"
+ "ba2c998a-8dfe-454e-8590-a1210cf117c2"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224555Z:351be7c8-b854-406c-90ad-e1514593bc8b"
+ "NORTHCENTRALUS:20200514T213417Z:ba2c998a-8dfe-454e-8590-a1210cf117c2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15630,7 +15627,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:55 GMT"
+ "Thu, 14 May 2020 21:34:17 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15639,20 +15636,23 @@
"-1"
],
"Content-Length": [
- "1324"
+ "831"
+ ],
+ "Retry-After": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5128592Z\",\r\n \"duration\": \"PT8.2693309S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9674/providers/Microsoft.Resources/deployments/ps8950?api-version=2019-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTY3NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg5NTA/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f818baa7-bcd0-4986-914e-1e8814007cd6"
+ "2e6fd486-1a91-41e0-81d1-3578c3c43ee3"
],
"Accept-Language": [
"en-US"
@@ -15671,20 +15671,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11513"
],
"x-ms-request-id": [
- "d4c04d08-c33b-48fa-9e3f-9a5060dc28bc"
+ "ba9ca171-d9ef-4f7c-a4a5-41f28fb2cc03"
],
"x-ms-correlation-request-id": [
- "d4c04d08-c33b-48fa-9e3f-9a5060dc28bc"
+ "ba9ca171-d9ef-4f7c-a4a5-41f28fb2cc03"
],
"x-ms-routing-request-id": [
- "NORTHCENTRALUS:20200513T224556Z:d4c04d08-c33b-48fa-9e3f-9a5060dc28bc"
+ "NORTHCENTRALUS:20200514T213418Z:ba9ca171-d9ef-4f7c-a4a5-41f28fb2cc03"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -15693,7 +15690,7 @@
"nosniff"
],
"Date": [
- "Wed, 13 May 2020 22:45:55 GMT"
+ "Thu, 14 May 2020 21:34:18 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -15702,20 +15699,12623 @@
"-1"
],
"Content-Length": [
- "1324"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9674/providers/Microsoft.Resources/deployments/ps8950\",\r\n \"name\": \"ps8950\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"4655536d-85f3-480c-a65a-b4910d0cc410\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-13T22:45:53.5128592Z\",\r\n \"duration\": \"PT8.2693309S\",\r\n \"correlationId\": \"1f7084ac-efbf-4d3e-80ad-a7f9dbdf0a9a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6b4f110e-e2fe-4538-9d27-8c9e1f7746a4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11511"
+ ],
+ "x-ms-request-id": [
+ "9d25e8f7-983d-4b1c-9cc9-ac33ef2e87b2"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d25e8f7-983d-4b1c-9cc9-ac33ef2e87b2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213418Z:9d25e8f7-983d-4b1c-9cc9-ac33ef2e87b2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0aede2e2-d8e0-42cd-a3af-e62ac66e7eaa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11509"
+ ],
+ "x-ms-request-id": [
+ "f4a61a38-1462-4fd0-9644-b377996af116"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4a61a38-1462-4fd0-9644-b377996af116"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213419Z:f4a61a38-1462-4fd0-9644-b377996af116"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:18 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e8ade989-d471-4f33-959e-623a635d3d39"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11507"
+ ],
+ "x-ms-request-id": [
+ "78a80597-0c2b-4a71-b3d0-e195789b9e7c"
+ ],
+ "x-ms-correlation-request-id": [
+ "78a80597-0c2b-4a71-b3d0-e195789b9e7c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213419Z:78a80597-0c2b-4a71-b3d0-e195789b9e7c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d9b1f8b-c3c1-4b47-83df-9004aea16022"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11505"
+ ],
+ "x-ms-request-id": [
+ "535a958e-78c3-41da-b70d-18bdbadc45b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "535a958e-78c3-41da-b70d-18bdbadc45b3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213420Z:535a958e-78c3-41da-b70d-18bdbadc45b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed14a614-f578-414b-bb54-15c60edc0664"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11503"
+ ],
+ "x-ms-request-id": [
+ "feb21efe-2e50-49a2-b1a8-b5eb3b0305c0"
+ ],
+ "x-ms-correlation-request-id": [
+ "feb21efe-2e50-49a2-b1a8-b5eb3b0305c0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213420Z:feb21efe-2e50-49a2-b1a8-b5eb3b0305c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60f66005-ec00-432f-9b5b-8f431ee28250"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11501"
+ ],
+ "x-ms-request-id": [
+ "4381f1f8-c352-40d1-a20d-d1bfa6a4b60d"
+ ],
+ "x-ms-correlation-request-id": [
+ "4381f1f8-c352-40d1-a20d-d1bfa6a4b60d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213421Z:4381f1f8-c352-40d1-a20d-d1bfa6a4b60d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12098dee-bf8a-4842-a858-866e9c68bb9d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11499"
+ ],
+ "x-ms-request-id": [
+ "ff7e0444-bd98-45f6-85c5-df5d3f6d193d"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff7e0444-bd98-45f6-85c5-df5d3f6d193d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213421Z:ff7e0444-bd98-45f6-85c5-df5d3f6d193d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7d0f297-447f-43c0-b30d-283477cd7f7d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11497"
+ ],
+ "x-ms-request-id": [
+ "093135f6-783c-4117-ab0b-7cd3fdffc04f"
+ ],
+ "x-ms-correlation-request-id": [
+ "093135f6-783c-4117-ab0b-7cd3fdffc04f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213421Z:093135f6-783c-4117-ab0b-7cd3fdffc04f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:21 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3f7ef34-05d9-4236-b340-f8ab601dfeb1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11495"
+ ],
+ "x-ms-request-id": [
+ "2eaaa374-c8e1-43ae-a8ed-bf10d6886ae6"
+ ],
+ "x-ms-correlation-request-id": [
+ "2eaaa374-c8e1-43ae-a8ed-bf10d6886ae6"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213422Z:2eaaa374-c8e1-43ae-a8ed-bf10d6886ae6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:10.1484885Z\",\r\n \"duration\": \"PT1M36.8431691S\",\r\n \"trackingId\": \"3b004d6d-c5ae-4c68-b16e-431b131da010\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ccbfcb0-7b2e-4193-8bef-7833053a6c9b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11493"
+ ],
+ "x-ms-request-id": [
+ "66ad15f1-5075-46da-99eb-88c94b401715"
+ ],
+ "x-ms-correlation-request-id": [
+ "66ad15f1-5075-46da-99eb-88c94b401715"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213422Z:66ad15f1-5075-46da-99eb-88c94b401715"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "52eca18f-96cb-48bd-868e-f0a1c8ca5be7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11491"
+ ],
+ "x-ms-request-id": [
+ "a49fa7b3-4c06-4104-8771-4ddf3424736c"
+ ],
+ "x-ms-correlation-request-id": [
+ "a49fa7b3-4c06-4104-8771-4ddf3424736c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213423Z:a49fa7b3-4c06-4104-8771-4ddf3424736c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:22 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bb9a1b5d-b2ec-4b2e-b808-e9225020fdd4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11489"
+ ],
+ "x-ms-request-id": [
+ "d37e7915-ed87-4c65-90be-b538b84eae73"
+ ],
+ "x-ms-correlation-request-id": [
+ "d37e7915-ed87-4c65-90be-b538b84eae73"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213423Z:d37e7915-ed87-4c65-90be-b538b84eae73"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "df4decbd-5a82-4443-a2a4-0fb569abd922"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11487"
+ ],
+ "x-ms-request-id": [
+ "fb7d800c-70b2-47cc-8567-975b014aa063"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb7d800c-70b2-47cc-8567-975b014aa063"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213424Z:fb7d800c-70b2-47cc-8567-975b014aa063"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:23 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ec8bd3a-6fa4-402c-932e-899b48e4ef7a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11485"
+ ],
+ "x-ms-request-id": [
+ "47007792-de82-469d-8072-2b2703f8e75e"
+ ],
+ "x-ms-correlation-request-id": [
+ "47007792-de82-469d-8072-2b2703f8e75e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213424Z:47007792-de82-469d-8072-2b2703f8e75e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8c1f01bd-50cd-4ecc-bfbd-deb3a0bc4700"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11483"
+ ],
+ "x-ms-request-id": [
+ "b41fbe7d-fb48-45c0-bdd1-4de5cca9750c"
+ ],
+ "x-ms-correlation-request-id": [
+ "b41fbe7d-fb48-45c0-bdd1-4de5cca9750c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213425Z:b41fbe7d-fb48-45c0-bdd1-4de5cca9750c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:24 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "df8b6e24-eeb9-468a-b60f-3409ebe585b0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11481"
+ ],
+ "x-ms-request-id": [
+ "6891c520-9b9f-4387-912e-dc3726a0540b"
+ ],
+ "x-ms-correlation-request-id": [
+ "6891c520-9b9f-4387-912e-dc3726a0540b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213425Z:6891c520-9b9f-4387-912e-dc3726a0540b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29e0b3d6-f83d-426a-8ced-48ff1e02b3d5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11479"
+ ],
+ "x-ms-request-id": [
+ "83b49c6a-29a1-43e5-a495-553ce6ebc6e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "83b49c6a-29a1-43e5-a495-553ce6ebc6e0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213425Z:83b49c6a-29a1-43e5-a495-553ce6ebc6e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d45c374c-9d3b-4831-9012-4f13f49b77bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11477"
+ ],
+ "x-ms-request-id": [
+ "f0a02024-4988-41b7-a50c-f1b7c1ee32bc"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0a02024-4988-41b7-a50c-f1b7c1ee32bc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213426Z:f0a02024-4988-41b7-a50c-f1b7c1ee32bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:25 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "76962cb4-458c-4d78-bdc1-c7af5d037017"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11475"
+ ],
+ "x-ms-request-id": [
+ "39bfe29f-7710-44e6-bb1b-f50120710bb1"
+ ],
+ "x-ms-correlation-request-id": [
+ "39bfe29f-7710-44e6-bb1b-f50120710bb1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213426Z:39bfe29f-7710-44e6-bb1b-f50120710bb1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:26 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bf238565-e14e-4184-b2f7-9ef6f20c1903"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11473"
+ ],
+ "x-ms-request-id": [
+ "8c9e3c4f-82e0-4e97-9d50-fff3845fc523"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c9e3c4f-82e0-4e97-9d50-fff3845fc523"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213427Z:8c9e3c4f-82e0-4e97-9d50-fff3845fc523"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:26 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "acea839a-e7ae-4717-9c0d-272d34444df4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11471"
+ ],
+ "x-ms-request-id": [
+ "ca0f29c0-062e-409a-8d6c-ee792c5dfbe3"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca0f29c0-062e-409a-8d6c-ee792c5dfbe3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213427Z:ca0f29c0-062e-409a-8d6c-ee792c5dfbe3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:27 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9fd14369-c1a8-41c3-ad66-914fcb655fb9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11469"
+ ],
+ "x-ms-request-id": [
+ "49c45fd8-85c3-4a08-9976-5371f73eeaa2"
+ ],
+ "x-ms-correlation-request-id": [
+ "49c45fd8-85c3-4a08-9976-5371f73eeaa2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213428Z:49c45fd8-85c3-4a08-9976-5371f73eeaa2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:27 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2032b4f7-2a94-4ec7-9296-90eb9e440d5c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11467"
+ ],
+ "x-ms-request-id": [
+ "fd5ff7ea-6a4d-453a-a1c7-3ab476436f0c"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd5ff7ea-6a4d-453a-a1c7-3ab476436f0c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213428Z:fd5ff7ea-6a4d-453a-a1c7-3ab476436f0c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:28 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d69937bf-7267-4dc3-ac55-8bc638ce7cdf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11465"
+ ],
+ "x-ms-request-id": [
+ "426a7688-5f14-418f-b311-50e874062ab8"
+ ],
+ "x-ms-correlation-request-id": [
+ "426a7688-5f14-418f-b311-50e874062ab8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213429Z:426a7688-5f14-418f-b311-50e874062ab8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:28 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dc59eb9c-bbc9-4b7f-8c76-8f53a2f35e0c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11463"
+ ],
+ "x-ms-request-id": [
+ "e26a4342-4086-4d8e-aa3a-b10718ef6274"
+ ],
+ "x-ms-correlation-request-id": [
+ "e26a4342-4086-4d8e-aa3a-b10718ef6274"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213429Z:e26a4342-4086-4d8e-aa3a-b10718ef6274"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8ce4da63-4164-42b1-ad66-ffc9e7307b2a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11461"
+ ],
+ "x-ms-request-id": [
+ "376de3f6-b291-4e83-a755-6f95dbde1813"
+ ],
+ "x-ms-correlation-request-id": [
+ "376de3f6-b291-4e83-a755-6f95dbde1813"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213429Z:376de3f6-b291-4e83-a755-6f95dbde1813"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1e80a9f7-8188-4a05-992c-b2bab9d5560f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11459"
+ ],
+ "x-ms-request-id": [
+ "46e90847-1b01-466d-b75c-85d2de137a6a"
+ ],
+ "x-ms-correlation-request-id": [
+ "46e90847-1b01-466d-b75c-85d2de137a6a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213430Z:46e90847-1b01-466d-b75c-85d2de137a6a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:29 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b69ae7a9-015b-4de1-a1ee-3a695b47f4ee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11457"
+ ],
+ "x-ms-request-id": [
+ "1030b1c7-7b48-4713-9551-3c11afd39741"
+ ],
+ "x-ms-correlation-request-id": [
+ "1030b1c7-7b48-4713-9551-3c11afd39741"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213430Z:1030b1c7-7b48-4713-9551-3c11afd39741"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e20fe22-f402-42d4-880d-6eeff023e69b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11455"
+ ],
+ "x-ms-request-id": [
+ "d8802209-4c07-483f-bb55-70e650bc84a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8802209-4c07-483f-bb55-70e650bc84a1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213431Z:d8802209-4c07-483f-bb55-70e650bc84a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:30 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ad01c0d-1070-488f-8c45-97c76c64cf8a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11453"
+ ],
+ "x-ms-request-id": [
+ "6fe80d71-c152-4861-831a-829e09cf3cc8"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fe80d71-c152-4861-831a-829e09cf3cc8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213431Z:6fe80d71-c152-4861-831a-829e09cf3cc8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "08baadf9-7216-438c-9add-896d11c98ebc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11451"
+ ],
+ "x-ms-request-id": [
+ "17c75db7-0f89-4384-bd93-670c8dd913b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "17c75db7-0f89-4384-bd93-670c8dd913b9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213432Z:17c75db7-0f89-4384-bd93-670c8dd913b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:31 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f79172fa-9d7e-4b40-a6ba-cc9b77c8c0ba"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11449"
+ ],
+ "x-ms-request-id": [
+ "33a86f86-3702-4765-92a9-902e0ef634bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "33a86f86-3702-4765-92a9-902e0ef634bd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213432Z:33a86f86-3702-4765-92a9-902e0ef634bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:32 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9bed7e5e-b8e9-400b-80d5-d37ad5e3ac63"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11447"
+ ],
+ "x-ms-request-id": [
+ "ba09fcd2-28be-455c-801c-a67f29f54334"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba09fcd2-28be-455c-801c-a67f29f54334"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213432Z:ba09fcd2-28be-455c-801c-a67f29f54334"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:32 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4eafd5c0-4d7f-471e-b5fb-aa765d51fe11"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11445"
+ ],
+ "x-ms-request-id": [
+ "d31e89e3-6425-45bd-bba8-33732804b67e"
+ ],
+ "x-ms-correlation-request-id": [
+ "d31e89e3-6425-45bd-bba8-33732804b67e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213433Z:d31e89e3-6425-45bd-bba8-33732804b67e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:32 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fe6e1736-c240-404d-afd9-a4e3634d6a4e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11443"
+ ],
+ "x-ms-request-id": [
+ "b92a5e1c-d22a-4d3b-b4b8-3559e7ae362e"
+ ],
+ "x-ms-correlation-request-id": [
+ "b92a5e1c-d22a-4d3b-b4b8-3559e7ae362e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213433Z:b92a5e1c-d22a-4d3b-b4b8-3559e7ae362e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cc0c4355-dd35-4ad5-b7b2-8919149ecc50"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11441"
+ ],
+ "x-ms-request-id": [
+ "33ee929d-3779-485f-abf8-04fb0a6f25d7"
+ ],
+ "x-ms-correlation-request-id": [
+ "33ee929d-3779-485f-abf8-04fb0a6f25d7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213434Z:33ee929d-3779-485f-abf8-04fb0a6f25d7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "97b358fc-db45-4206-8c7f-5d94b9e01ac2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11439"
+ ],
+ "x-ms-request-id": [
+ "7198e537-9716-49b2-97f0-e7a4212ee1d3"
+ ],
+ "x-ms-correlation-request-id": [
+ "7198e537-9716-49b2-97f0-e7a4212ee1d3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213434Z:7198e537-9716-49b2-97f0-e7a4212ee1d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c93b7861-68f4-4b49-b547-338c5acfedaa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11437"
+ ],
+ "x-ms-request-id": [
+ "0decfae0-91d8-48b4-b22f-176422fde73f"
+ ],
+ "x-ms-correlation-request-id": [
+ "0decfae0-91d8-48b4-b22f-176422fde73f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213435Z:0decfae0-91d8-48b4-b22f-176422fde73f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "60c5cf2f-5d7d-48e5-acf6-18d11b43b93f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11435"
+ ],
+ "x-ms-request-id": [
+ "1d2e44fa-0c3b-437a-91ca-b3aafaa5f2a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d2e44fa-0c3b-437a-91ca-b3aafaa5f2a3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213435Z:1d2e44fa-0c3b-437a-91ca-b3aafaa5f2a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98313d37-5a6e-4468-a8c7-e9606a69d850"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11433"
+ ],
+ "x-ms-request-id": [
+ "799aaa52-bc05-4a9f-84f2-dc9869835ccc"
+ ],
+ "x-ms-correlation-request-id": [
+ "799aaa52-bc05-4a9f-84f2-dc9869835ccc"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213436Z:799aaa52-bc05-4a9f-84f2-dc9869835ccc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d3fb56c2-f350-455d-a021-ed2a07034c05"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11431"
+ ],
+ "x-ms-request-id": [
+ "587041b0-a2a0-4741-a84f-a06166102e02"
+ ],
+ "x-ms-correlation-request-id": [
+ "587041b0-a2a0-4741-a84f-a06166102e02"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213436Z:587041b0-a2a0-4741-a84f-a06166102e02"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:22.5968209Z\",\r\n \"duration\": \"PT1M49.2915015S\",\r\n \"trackingId\": \"9d8475ec-cd1d-4a9c-af8b-6f7cd9ab737a\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0d5c7b1-7af2-4455-b750-8383ef727330"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11429"
+ ],
+ "x-ms-request-id": [
+ "1f661c1c-d50c-468b-91ab-258c93cd89e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f661c1c-d50c-468b-91ab-258c93cd89e1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213436Z:1f661c1c-d50c-468b-91ab-258c93cd89e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d0ba6aad-0f14-4973-a17b-7a6d6a9b31e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11427"
+ ],
+ "x-ms-request-id": [
+ "511718d2-459e-44ef-8779-0f333a454c0f"
+ ],
+ "x-ms-correlation-request-id": [
+ "511718d2-459e-44ef-8779-0f333a454c0f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213437Z:511718d2-459e-44ef-8779-0f333a454c0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0b5fef62-2703-491c-bb8e-7bea3401a03b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11425"
+ ],
+ "x-ms-request-id": [
+ "5efce83c-30a0-4dd7-a6a8-0cb4ad9417de"
+ ],
+ "x-ms-correlation-request-id": [
+ "5efce83c-30a0-4dd7-a6a8-0cb4ad9417de"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213437Z:5efce83c-30a0-4dd7-a6a8-0cb4ad9417de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dad0cd47-ef47-48e2-9ed5-c7a7eff50c23"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11423"
+ ],
+ "x-ms-request-id": [
+ "d8181357-1947-4803-9b22-b3862d49113c"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8181357-1947-4803-9b22-b3862d49113c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213438Z:d8181357-1947-4803-9b22-b3862d49113c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "77beea6a-0e46-407c-bdbb-ab48a81c8393"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11421"
+ ],
+ "x-ms-request-id": [
+ "f00a571b-4449-4ae6-9ae9-96a0fa055b3a"
+ ],
+ "x-ms-correlation-request-id": [
+ "f00a571b-4449-4ae6-9ae9-96a0fa055b3a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213438Z:f00a571b-4449-4ae6-9ae9-96a0fa055b3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98c07269-3793-4e99-8c8e-b177714ea3e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11419"
+ ],
+ "x-ms-request-id": [
+ "bf175a10-dbfa-45eb-8cfa-b21d7c74b99a"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf175a10-dbfa-45eb-8cfa-b21d7c74b99a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213439Z:bf175a10-dbfa-45eb-8cfa-b21d7c74b99a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3c12368-b058-48e4-9886-4bfce94076a4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11417"
+ ],
+ "x-ms-request-id": [
+ "a6b96c7e-aa92-461d-9eb2-6e987834933b"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6b96c7e-aa92-461d-9eb2-6e987834933b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213439Z:a6b96c7e-aa92-461d-9eb2-6e987834933b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "92e06ac8-3551-4e46-8f54-380bc809a234"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11415"
+ ],
+ "x-ms-request-id": [
+ "4cc5f470-e489-43f9-94d5-ae4b0fb29063"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cc5f470-e489-43f9-94d5-ae4b0fb29063"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213440Z:4cc5f470-e489-43f9-94d5-ae4b0fb29063"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17b5885b-9788-4014-bb52-07d2c5279173"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11413"
+ ],
+ "x-ms-request-id": [
+ "28d7500b-1803-4032-8fa3-8c307549434c"
+ ],
+ "x-ms-correlation-request-id": [
+ "28d7500b-1803-4032-8fa3-8c307549434c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213440Z:28d7500b-1803-4032-8fa3-8c307549434c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e10dbfdc-fa9f-474d-a77e-72678aa5d77f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11411"
+ ],
+ "x-ms-request-id": [
+ "9fbc464b-e2e4-4323-b90b-c2480ae016e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fbc464b-e2e4-4323-b90b-c2480ae016e8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213440Z:9fbc464b-e2e4-4323-b90b-c2480ae016e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b155f740-b8d2-4fe5-88ed-7989040303ea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11409"
+ ],
+ "x-ms-request-id": [
+ "3f9147d3-5a09-462d-8579-5560e998812e"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f9147d3-5a09-462d-8579-5560e998812e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213441Z:3f9147d3-5a09-462d-8579-5560e998812e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "73d2f298-1f05-457d-8694-b7465df717c7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11407"
+ ],
+ "x-ms-request-id": [
+ "d8af8297-40e4-43fe-8ad8-3495d7330a8e"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8af8297-40e4-43fe-8ad8-3495d7330a8e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213441Z:d8af8297-40e4-43fe-8ad8-3495d7330a8e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "48966486-6f05-4da3-bb82-978b9d79ae5e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11405"
+ ],
+ "x-ms-request-id": [
+ "06f22e09-242f-433c-833b-9ebefa29be5a"
+ ],
+ "x-ms-correlation-request-id": [
+ "06f22e09-242f-433c-833b-9ebefa29be5a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213442Z:06f22e09-242f-433c-833b-9ebefa29be5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4a52ce60-a1ca-4570-9f70-a280cbe3a2e6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11403"
+ ],
+ "x-ms-request-id": [
+ "8902e771-d0aa-4e56-8e60-ffd4c5733dd3"
+ ],
+ "x-ms-correlation-request-id": [
+ "8902e771-d0aa-4e56-8e60-ffd4c5733dd3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213442Z:8902e771-d0aa-4e56-8e60-ffd4c5733dd3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "05ce3eae-a36f-40fe-b893-2078d7e795e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11401"
+ ],
+ "x-ms-request-id": [
+ "118141da-b74b-44fc-b1f5-11c652eb0c71"
+ ],
+ "x-ms-correlation-request-id": [
+ "118141da-b74b-44fc-b1f5-11c652eb0c71"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213443Z:118141da-b74b-44fc-b1f5-11c652eb0c71"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed926c08-978d-4fb3-97eb-828d2710a4cc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11399"
+ ],
+ "x-ms-request-id": [
+ "ba66494e-f79e-426b-a720-43c0e635f589"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba66494e-f79e-426b-a720-43c0e635f589"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213443Z:ba66494e-f79e-426b-a720-43c0e635f589"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d3427ca5-082c-4efa-9dc7-802df5e49a87"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11397"
+ ],
+ "x-ms-request-id": [
+ "b4129184-43dd-4bb8-bdbc-1b079b6bbb2d"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4129184-43dd-4bb8-bdbc-1b079b6bbb2d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213444Z:b4129184-43dd-4bb8-bdbc-1b079b6bbb2d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c3cb8e0a-2a64-4c19-868c-14d8400532db"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11395"
+ ],
+ "x-ms-request-id": [
+ "ee48cf29-34a1-4ab1-b83e-6d4ee18b2797"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee48cf29-34a1-4ab1-b83e-6d4ee18b2797"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213444Z:ee48cf29-34a1-4ab1-b83e-6d4ee18b2797"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f42f802b-ad72-4c6a-9712-25ef36e7233e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11393"
+ ],
+ "x-ms-request-id": [
+ "79b0be84-6d37-4fb3-8245-c8c7914eea72"
+ ],
+ "x-ms-correlation-request-id": [
+ "79b0be84-6d37-4fb3-8245-c8c7914eea72"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213444Z:79b0be84-6d37-4fb3-8245-c8c7914eea72"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1386e880-b6be-4db9-9901-c2b1b5772ed9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11391"
+ ],
+ "x-ms-request-id": [
+ "8c44b92b-2bb3-45c0-82b7-00184ce62096"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c44b92b-2bb3-45c0-82b7-00184ce62096"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213445Z:8c44b92b-2bb3-45c0-82b7-00184ce62096"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a8ec0fa2-c076-4c68-8775-7cbe76ee01bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11389"
+ ],
+ "x-ms-request-id": [
+ "c45b5fe6-a87c-445c-aa34-c6b11a0cf0e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c45b5fe6-a87c-445c-aa34-c6b11a0cf0e0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213445Z:c45b5fe6-a87c-445c-aa34-c6b11a0cf0e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63e7d15c-2563-4ab6-aab2-8cbacf9008f1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11387"
+ ],
+ "x-ms-request-id": [
+ "48dbb51e-a5f1-42e1-bfa4-272bd1be1636"
+ ],
+ "x-ms-correlation-request-id": [
+ "48dbb51e-a5f1-42e1-bfa4-272bd1be1636"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213446Z:48dbb51e-a5f1-42e1-bfa4-272bd1be1636"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0cae6b3b-6693-424c-aeb7-825f8c6d515f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11385"
+ ],
+ "x-ms-request-id": [
+ "fa82de03-7b0e-4dfa-8394-ce30b2e5af62"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa82de03-7b0e-4dfa-8394-ce30b2e5af62"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213446Z:fa82de03-7b0e-4dfa-8394-ce30b2e5af62"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8d3c0766-146e-4e1c-ae9b-7875d948b764"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11383"
+ ],
+ "x-ms-request-id": [
+ "203af807-b5a0-4385-be07-e476252f7878"
+ ],
+ "x-ms-correlation-request-id": [
+ "203af807-b5a0-4385-be07-e476252f7878"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213447Z:203af807-b5a0-4385-be07-e476252f7878"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ac66b831-102f-4201-98af-39773a7f6355"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11381"
+ ],
+ "x-ms-request-id": [
+ "fd9a3085-9724-4c32-a0e5-5605765665c8"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd9a3085-9724-4c32-a0e5-5605765665c8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213447Z:fd9a3085-9724-4c32-a0e5-5605765665c8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6f96a71e-94c1-478e-a732-d8e13800c215"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11379"
+ ],
+ "x-ms-request-id": [
+ "7fa5e928-5293-4f74-a312-ceae2ac6b0e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fa5e928-5293-4f74-a312-ceae2ac6b0e7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213448Z:7fa5e928-5293-4f74-a312-ceae2ac6b0e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f8613874-3763-4628-9a85-f962f9548e15"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11377"
+ ],
+ "x-ms-request-id": [
+ "d2787280-03e9-47ef-b7ac-8eef827d7657"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2787280-03e9-47ef-b7ac-8eef827d7657"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213448Z:d2787280-03e9-47ef-b7ac-8eef827d7657"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "21843efb-de7b-4b95-9440-31fca6d5fe7b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11375"
+ ],
+ "x-ms-request-id": [
+ "3d359463-ec88-4c89-ad37-b3df16f61ec7"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d359463-ec88-4c89-ad37-b3df16f61ec7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213448Z:3d359463-ec88-4c89-ad37-b3df16f61ec7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7b3269c0-13b0-4941-8221-be4b3c2d2efd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11373"
+ ],
+ "x-ms-request-id": [
+ "518bbe3c-8e3e-4af8-88bb-74654a3ca05e"
+ ],
+ "x-ms-correlation-request-id": [
+ "518bbe3c-8e3e-4af8-88bb-74654a3ca05e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213449Z:518bbe3c-8e3e-4af8-88bb-74654a3ca05e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cbd4641e-141c-4aad-90f6-f0b4e5833397"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11371"
+ ],
+ "x-ms-request-id": [
+ "31b6dd5e-ca01-40db-97bf-58313dbcea7b"
+ ],
+ "x-ms-correlation-request-id": [
+ "31b6dd5e-ca01-40db-97bf-58313dbcea7b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213449Z:31b6dd5e-ca01-40db-97bf-58313dbcea7b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cda4d7a3-541b-40c5-b225-d261201f486c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11369"
+ ],
+ "x-ms-request-id": [
+ "e2747bb2-9e2a-468e-b6a5-66a517d89def"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2747bb2-9e2a-468e-b6a5-66a517d89def"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213450Z:e2747bb2-9e2a-468e-b6a5-66a517d89def"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "edf469ec-5f56-46dc-ac00-0cfab23d3029"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11367"
+ ],
+ "x-ms-request-id": [
+ "64fc3bf1-f7e7-45b4-8a4a-4e747bcb6321"
+ ],
+ "x-ms-correlation-request-id": [
+ "64fc3bf1-f7e7-45b4-8a4a-4e747bcb6321"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213450Z:64fc3bf1-f7e7-45b4-8a4a-4e747bcb6321"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3cfe5d2c-f8af-4aa9-b787-ae2842991d16"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11365"
+ ],
+ "x-ms-request-id": [
+ "50b62714-0bcb-42bf-8aad-497eb9055256"
+ ],
+ "x-ms-correlation-request-id": [
+ "50b62714-0bcb-42bf-8aad-497eb9055256"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213451Z:50b62714-0bcb-42bf-8aad-497eb9055256"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c787ade7-764d-4857-8b28-857bf7e4388b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11363"
+ ],
+ "x-ms-request-id": [
+ "8b9e4252-4dce-4912-a1e9-0344337fb36a"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b9e4252-4dce-4912-a1e9-0344337fb36a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213451Z:8b9e4252-4dce-4912-a1e9-0344337fb36a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d5e5b8f3-bb7f-4fcc-87ec-f7d7055da7a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11361"
+ ],
+ "x-ms-request-id": [
+ "b9e27306-6bf0-41ce-9e52-be0038dae6ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9e27306-6bf0-41ce-9e52-be0038dae6ef"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213451Z:b9e27306-6bf0-41ce-9e52-be0038dae6ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "830"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:34:36.6543463Z\",\r\n \"duration\": \"PT2M3.3490269S\",\r\n \"trackingId\": \"bdaf6681-2fc3-4ead-967e-f78e9c888b01\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d8389c3c-e25b-442d-a383-bf8f6ceca201"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11359"
+ ],
+ "x-ms-request-id": [
+ "83e6655a-7db2-40b7-b415-db3cebce99f7"
+ ],
+ "x-ms-correlation-request-id": [
+ "83e6655a-7db2-40b7-b415-db3cebce99f7"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213452Z:83e6655a-7db2-40b7-b415-db3cebce99f7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "828"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:34:52.1411779Z\",\r\n \"duration\": \"PT2M18.8358585S\",\r\n \"trackingId\": \"85da025b-8362-4e28-9290-f133b851ee41\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/deployments/ps3021/operations?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9kZXBsb3ltZW50cy9wczMwMjEvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEwLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e6dd66b8-f9a6-448f-b48f-899ebbd2a79e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11357"
+ ],
+ "x-ms-request-id": [
+ "10f773fa-aa57-4ddf-b4a0-932e804f3e37"
+ ],
+ "x-ms-correlation-request-id": [
+ "10f773fa-aa57-4ddf-b4a0-932e804f3e37"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213452Z:10f773fa-aa57-4ddf-b4a0-932e804f3e37"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:34:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1287"
+ ],
+ "Retry-After": [
+ "0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/5A40CB0B815EE5A5\",\r\n \"operationId\": \"5A40CB0B815EE5A5\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:34:52.1411779Z\",\r\n \"duration\": \"PT2M18.8358585S\",\r\n \"trackingId\": \"85da025b-8362-4e28-9290-f133b851ee41\",\r\n \"serviceRequestId\": \"ab85510b-2f8e-49ce-9199-407b3c17cab8\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deploymentScripts/PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\",\r\n \"resourceType\": \"Microsoft.Resources/deploymentScripts\",\r\n \"resourceName\": \"PsTest-DeploymentScripts-74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021/operations/08586121149337603145\",\r\n \"operationId\": \"08586121149337603145\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-05-14T21:34:52.5482218Z\",\r\n \"duration\": \"PT0.1645036S\",\r\n \"trackingId\": \"cccd6c5c-5df7-4c25-b435-c11ab3167c79\",\r\n \"statusCode\": \"OK\",\r\n \"statusMessage\": null\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2955fdd7-a38e-404f-b803-376b7f170049"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "8cff5927-b0b8-4e03-9db2-ada19a11f79b"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cff5927-b0b8-4e03-9db2-ada19a11f79b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213233Z:8cff5927-b0b8-4e03-9db2-ada19a11f79b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:32 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fb399f36-5b45-477c-9ccc-a71484c8b9e0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "324c2309-5f85-4b82-93c3-d33f052114a4"
+ ],
+ "x-ms-correlation-request-id": [
+ "324c2309-5f85-4b82-93c3-d33f052114a4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213233Z:324c2309-5f85-4b82-93c3-d33f052114a4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9953081-6682-42a9-a4bb-0b7cb5fcb29c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "3bd02b29-b6ae-4a3d-bc66-83ef669d8724"
+ ],
+ "x-ms-correlation-request-id": [
+ "3bd02b29-b6ae-4a3d-bc66-83ef669d8724"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213234Z:3bd02b29-b6ae-4a3d-bc66-83ef669d8724"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "451ad417-d2d8-4c7a-a136-6f07e2f98f19"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "8930f36f-9e4c-415d-a8f6-3150942e06f9"
+ ],
+ "x-ms-correlation-request-id": [
+ "8930f36f-9e4c-415d-a8f6-3150942e06f9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213234Z:8930f36f-9e4c-415d-a8f6-3150942e06f9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:33 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f7e4a5ed-485c-470a-8482-27f25a375ffb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "0b2ed46e-72a3-45da-a029-c296a89aa942"
+ ],
+ "x-ms-correlation-request-id": [
+ "0b2ed46e-72a3-45da-a029-c296a89aa942"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213234Z:0b2ed46e-72a3-45da-a029-c296a89aa942"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "37b975e3-20bb-4996-a970-07028bfceb46"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "d4d4be50-ef35-475b-9686-6cf3c723346b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4d4be50-ef35-475b-9686-6cf3c723346b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213235Z:d4d4be50-ef35-475b-9686-6cf3c723346b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:34 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ee4282df-f7dc-49f2-acae-fb7e3da941d5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "e10bc2cd-f96b-4db5-a02b-efd1f6fc06cd"
+ ],
+ "x-ms-correlation-request-id": [
+ "e10bc2cd-f96b-4db5-a02b-efd1f6fc06cd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213235Z:e10bc2cd-f96b-4db5-a02b-efd1f6fc06cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "628f12f7-c470-41c2-93a3-a26f5b2e4643"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "cad00211-ebb0-4354-8106-507f74d7e1a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "cad00211-ebb0-4354-8106-507f74d7e1a3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213236Z:cad00211-ebb0-4354-8106-507f74d7e1a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a59fdbbb-45a1-435a-ae91-01758df56df0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "48529e96-ef2c-4145-867c-dbc44434b4bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "48529e96-ef2c-4145-867c-dbc44434b4bd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213236Z:48529e96-ef2c-4145-867c-dbc44434b4bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:35 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "38619de7-ba71-4255-ac93-2c3c917ee73f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-request-id": [
+ "81297ba4-b8ae-48f5-b6d3-94a5d54e3e5a"
+ ],
+ "x-ms-correlation-request-id": [
+ "81297ba4-b8ae-48f5-b6d3-94a5d54e3e5a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213236Z:81297ba4-b8ae-48f5-b6d3-94a5d54e3e5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a7108f30-cb22-44db-966b-8ebb2f24038e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-request-id": [
+ "75bf4560-57e2-4061-b4f9-8a69277f7f9b"
+ ],
+ "x-ms-correlation-request-id": [
+ "75bf4560-57e2-4061-b4f9-8a69277f7f9b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213237Z:75bf4560-57e2-4061-b4f9-8a69277f7f9b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:36 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3a1de90c-ce9a-4942-97eb-8a4432f2687e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-request-id": [
+ "2291b1d5-1d90-47b1-a5cc-74a8832b9cc8"
+ ],
+ "x-ms-correlation-request-id": [
+ "2291b1d5-1d90-47b1-a5cc-74a8832b9cc8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213237Z:2291b1d5-1d90-47b1-a5cc-74a8832b9cc8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "69701aa8-2899-4502-8fb0-5cf0b69b888d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-request-id": [
+ "fa4822cb-c6a5-4849-b1ef-ea280f7eb5a9"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa4822cb-c6a5-4849-b1ef-ea280f7eb5a9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213238Z:fa4822cb-c6a5-4849-b1ef-ea280f7eb5a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8787720d-a76a-4eb7-b162-f18dfbef3c31"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-request-id": [
+ "fd53f75f-c20d-4ad2-bc5d-5d148d593834"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd53f75f-c20d-4ad2-bc5d-5d148d593834"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213238Z:fd53f75f-c20d-4ad2-bc5d-5d148d593834"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:37 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e24fca8-1afc-4877-9399-51c1ddd3c570"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-request-id": [
+ "53895d74-ca4e-4ca2-83f8-6e887aca591c"
+ ],
+ "x-ms-correlation-request-id": [
+ "53895d74-ca4e-4ca2-83f8-6e887aca591c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213238Z:53895d74-ca4e-4ca2-83f8-6e887aca591c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ea59c980-76bd-40d9-8066-5dd14a43fded"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-request-id": [
+ "5b4fd9ac-4b13-424f-8de4-664a3bb99ce3"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b4fd9ac-4b13-424f-8de4-664a3bb99ce3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213239Z:5b4fd9ac-4b13-424f-8de4-664a3bb99ce3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a4beda86-0fe1-49af-a863-c6776d60e8fe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-request-id": [
+ "e8d5065f-57ca-4e49-9cfc-45c4d366af27"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8d5065f-57ca-4e49-9cfc-45c4d366af27"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213239Z:e8d5065f-57ca-4e49-9cfc-45c4d366af27"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fd1c84bc-a38e-49ef-8e74-1c0e1ebd002c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-request-id": [
+ "cb8230e2-9f14-4ba0-9b4a-543e8977a684"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb8230e2-9f14-4ba0-9b4a-543e8977a684"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213240Z:cb8230e2-9f14-4ba0-9b4a-543e8977a684"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "50a4f074-c662-4d62-8c66-6ef1d3d718bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-request-id": [
+ "f5f038aa-ca7c-4aec-998c-74b7fb8059fb"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5f038aa-ca7c-4aec-998c-74b7fb8059fb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213240Z:f5f038aa-ca7c-4aec-998c-74b7fb8059fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:39 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "10959357-2018-4510-bb08-94bb5aac4b55"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-request-id": [
+ "9af8fb30-0250-4161-8d53-29de3cac7b01"
+ ],
+ "x-ms-correlation-request-id": [
+ "9af8fb30-0250-4161-8d53-29de3cac7b01"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213240Z:9af8fb30-0250-4161-8d53-29de3cac7b01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e99f755e-74b1-4992-be7e-df10f0febcea"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-request-id": [
+ "6a36b855-5c3b-4672-aece-1d31b98136c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a36b855-5c3b-4672-aece-1d31b98136c9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213241Z:6a36b855-5c3b-4672-aece-1d31b98136c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2bf53d3d-019d-42cb-b865-b174a52e3f96"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-request-id": [
+ "bcd2aa2b-0b7c-4f37-a82f-671c4f3f1a5e"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcd2aa2b-0b7c-4f37-a82f-671c4f3f1a5e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213241Z:bcd2aa2b-0b7c-4f37-a82f-671c4f3f1a5e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78008a58-8231-45a7-bd98-f4cadbf87c21"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-request-id": [
+ "2096dc91-9299-4899-bbd6-16c7273e1a4d"
+ ],
+ "x-ms-correlation-request-id": [
+ "2096dc91-9299-4899-bbd6-16c7273e1a4d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213241Z:2096dc91-9299-4899-bbd6-16c7273e1a4d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb17f7ac-a376-463d-8520-b6b200039686"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-request-id": [
+ "7b7a348b-005c-44aa-acc0-098624baf64a"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b7a348b-005c-44aa-acc0-098624baf64a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213242Z:7b7a348b-005c-44aa-acc0-098624baf64a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:41 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "64e24cdb-06f5-420a-bfe1-5484639ffb95"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-request-id": [
+ "27dc974d-9e7a-455f-9686-010e88773c6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "27dc974d-9e7a-455f-9686-010e88773c6e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213242Z:27dc974d-9e7a-455f-9686-010e88773c6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e810e3c6-2a1d-4344-984e-e825fbbac3dd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-request-id": [
+ "632b16ec-31c9-4419-ad11-35bf5c7aac6e"
+ ],
+ "x-ms-correlation-request-id": [
+ "632b16ec-31c9-4419-ad11-35bf5c7aac6e"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213243Z:632b16ec-31c9-4419-ad11-35bf5c7aac6e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2e7d41dc-0c4c-437b-a247-6b769a6f40b1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-request-id": [
+ "ae5cf6d3-6245-4276-9cd0-63dd8dad43ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae5cf6d3-6245-4276-9cd0-63dd8dad43ff"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213243Z:ae5cf6d3-6245-4276-9cd0-63dd8dad43ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f016bd0f-0b40-4a12-8ca8-221ded1d732e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-request-id": [
+ "02fc3f61-86b1-4ee5-bb6b-be7e2edc0551"
+ ],
+ "x-ms-correlation-request-id": [
+ "02fc3f61-86b1-4ee5-bb6b-be7e2edc0551"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213243Z:02fc3f61-86b1-4ee5-bb6b-be7e2edc0551"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e85bcc7b-d435-4643-9f41-420c9da451e9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-request-id": [
+ "428e4870-aa12-4269-a7a1-238e54ec3ff2"
+ ],
+ "x-ms-correlation-request-id": [
+ "428e4870-aa12-4269-a7a1-238e54ec3ff2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213244Z:428e4870-aa12-4269-a7a1-238e54ec3ff2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7791053e-0d51-4a37-9714-8d361d2c1b06"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-request-id": [
+ "68d76394-671b-429d-8951-2bbecf8b14a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "68d76394-671b-429d-8951-2bbecf8b14a3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213244Z:68d76394-671b-429d-8951-2bbecf8b14a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7bbd7371-e1da-446f-9ef8-4900f24fd764"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-request-id": [
+ "9f463f50-90fc-43eb-844e-bc1cf9c91706"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f463f50-90fc-43eb-844e-bc1cf9c91706"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213245Z:9f463f50-90fc-43eb-844e-bc1cf9c91706"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3c4fd457-adb9-4031-a174-d2c053664c0e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-request-id": [
+ "506a51cb-b329-439b-98e5-54a78f3523e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "506a51cb-b329-439b-98e5-54a78f3523e8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213245Z:506a51cb-b329-439b-98e5-54a78f3523e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:44 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "119b3973-ef22-4fde-b01f-b21d208631ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
+ ],
+ "x-ms-request-id": [
+ "dff26c2a-c170-4008-8093-f929fed897c3"
+ ],
+ "x-ms-correlation-request-id": [
+ "dff26c2a-c170-4008-8093-f929fed897c3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213245Z:dff26c2a-c170-4008-8093-f929fed897c3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f1795459-ea5f-4498-a484-bca7d37741f1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
+ "x-ms-request-id": [
+ "7bb99cf9-b19a-45ee-bb49-a13a1494aadd"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bb99cf9-b19a-45ee-bb49-a13a1494aadd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213246Z:7bb99cf9-b19a-45ee-bb49-a13a1494aadd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3be61621-2306-46d2-8ec3-a03ab57a5666"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11930"
+ ],
+ "x-ms-request-id": [
+ "a66f0663-6d0a-4159-82e9-6b3948eb1da0"
+ ],
+ "x-ms-correlation-request-id": [
+ "a66f0663-6d0a-4159-82e9-6b3948eb1da0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213246Z:a66f0663-6d0a-4159-82e9-6b3948eb1da0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:45 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2386c733-cd71-4a81-99c2-248a71b2661b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11928"
+ ],
+ "x-ms-request-id": [
+ "ca4df79c-3c94-4934-8989-e8b3d4380580"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca4df79c-3c94-4934-8989-e8b3d4380580"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213247Z:ca4df79c-3c94-4934-8989-e8b3d4380580"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30d91a1f-00ac-494b-89ba-63a94235df65"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11926"
+ ],
+ "x-ms-request-id": [
+ "2d5a8e66-e244-4f0a-ac7b-a2513b3101a0"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d5a8e66-e244-4f0a-ac7b-a2513b3101a0"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213247Z:2d5a8e66-e244-4f0a-ac7b-a2513b3101a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81e36cca-d82f-49f2-b66f-148d487935c5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11924"
+ ],
+ "x-ms-request-id": [
+ "e66ab29d-2ed9-46c5-9bae-70e2138b824d"
+ ],
+ "x-ms-correlation-request-id": [
+ "e66ab29d-2ed9-46c5-9bae-70e2138b824d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213247Z:e66ab29d-2ed9-46c5-9bae-70e2138b824d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e21aeb20-e1b1-44e4-b08e-82f219f19193"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11922"
+ ],
+ "x-ms-request-id": [
+ "a3ccb342-68d5-4a42-9d0e-57eae4fbf999"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3ccb342-68d5-4a42-9d0e-57eae4fbf999"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213248Z:a3ccb342-68d5-4a42-9d0e-57eae4fbf999"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70038b82-38af-404d-be54-4c181ab87b2b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11920"
+ ],
+ "x-ms-request-id": [
+ "b485db74-ae5b-44df-827e-a8bd92338c90"
+ ],
+ "x-ms-correlation-request-id": [
+ "b485db74-ae5b-44df-827e-a8bd92338c90"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213248Z:b485db74-ae5b-44df-827e-a8bd92338c90"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:47 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6052b6c-f6e3-47a3-bb19-10110664cd4c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11918"
+ ],
+ "x-ms-request-id": [
+ "45d820fc-77eb-4e53-abea-87d2eedc16cb"
+ ],
+ "x-ms-correlation-request-id": [
+ "45d820fc-77eb-4e53-abea-87d2eedc16cb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213248Z:45d820fc-77eb-4e53-abea-87d2eedc16cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d19cc63-ab16-4836-b16d-be1a5a369daf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11916"
+ ],
+ "x-ms-request-id": [
+ "f63b1a22-a84b-44a8-a2cd-bac83fe2cac3"
+ ],
+ "x-ms-correlation-request-id": [
+ "f63b1a22-a84b-44a8-a2cd-bac83fe2cac3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213249Z:f63b1a22-a84b-44a8-a2cd-bac83fe2cac3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:48 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c85510d-90aa-4588-a84b-ff994c7e165e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11914"
+ ],
+ "x-ms-request-id": [
+ "4a224707-09da-4ddd-b7e8-2ec3cc214b49"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a224707-09da-4ddd-b7e8-2ec3cc214b49"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213249Z:4a224707-09da-4ddd-b7e8-2ec3cc214b49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c52c7856-fbf9-4472-b132-cbbf6e8f2c0e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11912"
+ ],
+ "x-ms-request-id": [
+ "1b5c9b24-42b1-4031-a083-a088f0b0a9ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b5c9b24-42b1-4031-a083-a088f0b0a9ef"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213250Z:1b5c9b24-42b1-4031-a083-a088f0b0a9ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01983cce-6f39-4549-844f-acc57fac20ee"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11910"
+ ],
+ "x-ms-request-id": [
+ "1c45321c-bab9-495f-8093-b046c9841792"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c45321c-bab9-495f-8093-b046c9841792"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213250Z:1c45321c-bab9-495f-8093-b046c9841792"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:49 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6df0b63f-3715-449b-8d46-2ee8b583d493"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11908"
+ ],
+ "x-ms-request-id": [
+ "cb9e1bf5-41dc-4508-8b22-282dfc87321b"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb9e1bf5-41dc-4508-8b22-282dfc87321b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213250Z:cb9e1bf5-41dc-4508-8b22-282dfc87321b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f11fa8ec-8624-4418-bfb4-b5218ec631d1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11906"
+ ],
+ "x-ms-request-id": [
+ "dfa748c0-be41-460b-87a3-383268caf4fd"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfa748c0-be41-460b-87a3-383268caf4fd"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213251Z:dfa748c0-be41-460b-87a3-383268caf4fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3f84135d-67c8-41a7-a606-6aba96935692"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11904"
+ ],
+ "x-ms-request-id": [
+ "6e25b7a0-8f60-48b8-b7a5-f7ed2686f5f1"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e25b7a0-8f60-48b8-b7a5-f7ed2686f5f1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213251Z:6e25b7a0-8f60-48b8-b7a5-f7ed2686f5f1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:50 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dbd5ca84-d8e8-43a3-b3e7-8ad47b7f8102"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11902"
+ ],
+ "x-ms-request-id": [
+ "bc19f9a4-0342-45f6-be2f-e09ee0d0f933"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc19f9a4-0342-45f6-be2f-e09ee0d0f933"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213252Z:bc19f9a4-0342-45f6-be2f-e09ee0d0f933"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7daac583-0834-41d1-9a6d-013bb7a28cd0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11900"
+ ],
+ "x-ms-request-id": [
+ "d6e59caa-cb75-43f1-b8e5-199a76f1083b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6e59caa-cb75-43f1-b8e5-199a76f1083b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213252Z:d6e59caa-cb75-43f1-b8e5-199a76f1083b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:51 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "68a8c6fd-ef31-40ea-8ded-aec0e085c210"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11898"
+ ],
+ "x-ms-request-id": [
+ "bae035d2-1f22-4dec-a12c-771fc94e2a18"
+ ],
+ "x-ms-correlation-request-id": [
+ "bae035d2-1f22-4dec-a12c-771fc94e2a18"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213252Z:bae035d2-1f22-4dec-a12c-771fc94e2a18"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c6885f92-7cf4-4dff-95fe-d7df1a92c766"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11896"
+ ],
+ "x-ms-request-id": [
+ "f5fd830a-3fef-4a03-bcef-deb946465e5b"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5fd830a-3fef-4a03-bcef-deb946465e5b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213253Z:f5fd830a-3fef-4a03-bcef-deb946465e5b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b75215ba-c3fb-4dc0-897e-aa59dfc4050f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11894"
+ ],
+ "x-ms-request-id": [
+ "4bb7c601-413b-46f5-80e3-dbf6947d9650"
+ ],
+ "x-ms-correlation-request-id": [
+ "4bb7c601-413b-46f5-80e3-dbf6947d9650"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213253Z:4bb7c601-413b-46f5-80e3-dbf6947d9650"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95d15d74-df6f-4bc8-8234-30d13cc448f1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11892"
+ ],
+ "x-ms-request-id": [
+ "84908723-0b10-41b8-959d-54a64008def5"
+ ],
+ "x-ms-correlation-request-id": [
+ "84908723-0b10-41b8-959d-54a64008def5"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213254Z:84908723-0b10-41b8-959d-54a64008def5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:53 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e10d56f5-bbc7-4b1d-8af7-ca48272eeb6a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11890"
+ ],
+ "x-ms-request-id": [
+ "60719f82-519b-41f9-947c-fb0ba7620017"
+ ],
+ "x-ms-correlation-request-id": [
+ "60719f82-519b-41f9-947c-fb0ba7620017"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213254Z:60719f82-519b-41f9-947c-fb0ba7620017"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:53 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "85209a63-ef0d-4388-b9b8-956199046225"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11888"
+ ],
+ "x-ms-request-id": [
+ "4d83cf7e-5e82-4202-bd60-75e5495de2d9"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d83cf7e-5e82-4202-bd60-75e5495de2d9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213254Z:4d83cf7e-5e82-4202-bd60-75e5495de2d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ec40119-3a73-4133-b9d3-615e31a3d543"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11886"
+ ],
+ "x-ms-request-id": [
+ "e13a19ef-c6ef-4dcf-9bd8-b405a9e177bf"
+ ],
+ "x-ms-correlation-request-id": [
+ "e13a19ef-c6ef-4dcf-9bd8-b405a9e177bf"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213255Z:e13a19ef-c6ef-4dcf-9bd8-b405a9e177bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4fb02db7-2712-4945-85a0-00616d70f355"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11884"
+ ],
+ "x-ms-request-id": [
+ "7e98b3b6-4627-4fa1-93c9-f9df90893d4f"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e98b3b6-4627-4fa1-93c9-f9df90893d4f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213255Z:7e98b3b6-4627-4fa1-93c9-f9df90893d4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:54 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1324"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:33.2604382Z\",\r\n \"duration\": \"PT1.5431283S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "557f2bad-90b2-4904-8cf2-d5e3aa27e189"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11882"
+ ],
+ "x-ms-request-id": [
+ "777cda62-9536-49d0-a1e8-7513a388588a"
+ ],
+ "x-ms-correlation-request-id": [
+ "777cda62-9536-49d0-a1e8-7513a388588a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213256Z:777cda62-9536-49d0-a1e8-7513a388588a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:55.8887642Z\",\r\n \"duration\": \"PT24.1714543S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4a2bfcd2-f65f-4213-86bf-66eb0b538c2a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11880"
+ ],
+ "x-ms-request-id": [
+ "c527ceeb-f971-4d6b-8051-3c9ead3a7580"
+ ],
+ "x-ms-correlation-request-id": [
+ "c527ceeb-f971-4d6b-8051-3c9ead3a7580"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213256Z:c527ceeb-f971-4d6b-8051-3c9ead3a7580"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:55 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.0931737Z\",\r\n \"duration\": \"PT24.3758638S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa93ff3e-b704-4939-93ca-fc2b338c9dbf"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11878"
+ ],
+ "x-ms-request-id": [
+ "edae65a9-625a-411c-9422-33924a5f92f3"
+ ],
+ "x-ms-correlation-request-id": [
+ "edae65a9-625a-411c-9422-33924a5f92f3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213257Z:edae65a9-625a-411c-9422-33924a5f92f3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.0931737Z\",\r\n \"duration\": \"PT24.3758638S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0353b5e2-c991-4fe4-bd37-c8df36b33d1b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11876"
+ ],
+ "x-ms-request-id": [
+ "f057dd9b-f5a2-4f05-b601-0e2762ffe075"
+ ],
+ "x-ms-correlation-request-id": [
+ "f057dd9b-f5a2-4f05-b601-0e2762ffe075"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213257Z:f057dd9b-f5a2-4f05-b601-0e2762ffe075"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:56 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.0931737Z\",\r\n \"duration\": \"PT24.3758638S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "47d6e8b4-daf5-44f8-8471-03e117a6f015"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11874"
+ ],
+ "x-ms-request-id": [
+ "76326e24-c7a8-406f-abff-dc2f3fdcea54"
+ ],
+ "x-ms-correlation-request-id": [
+ "76326e24-c7a8-406f-abff-dc2f3fdcea54"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213257Z:76326e24-c7a8-406f-abff-dc2f3fdcea54"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.0931737Z\",\r\n \"duration\": \"PT24.3758638S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2dbf70dc-d918-425e-ba2c-33ce554dbc2f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11872"
+ ],
+ "x-ms-request-id": [
+ "d0b001c7-b82d-4752-93ff-df632bde093b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0b001c7-b82d-4752-93ff-df632bde093b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213258Z:d0b001c7-b82d-4752-93ff-df632bde093b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.0931737Z\",\r\n \"duration\": \"PT24.3758638S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "547f608c-1c0c-47df-adc3-eefe012409af"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11870"
+ ],
+ "x-ms-request-id": [
+ "a579e6ad-dbac-4827-87b8-15ab3933fe10"
+ ],
+ "x-ms-correlation-request-id": [
+ "a579e6ad-dbac-4827-87b8-15ab3933fe10"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213258Z:a579e6ad-dbac-4827-87b8-15ab3933fe10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:57 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:56.0931737Z\",\r\n \"duration\": \"PT24.3758638S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4d6099aa-0e71-4514-b94b-2004721b1320"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11868"
+ ],
+ "x-ms-request-id": [
+ "5b84fa4c-74cd-41f6-bb39-d23f49125779"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b84fa4c-74cd-41f6-bb39-d23f49125779"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213259Z:5b84fa4c-74cd-41f6-bb39-d23f49125779"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9a1614f9-3425-42e8-8118-f1f836e46890"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11866"
+ ],
+ "x-ms-request-id": [
+ "0ebeb622-6b36-4961-a88b-51b6189e1232"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ebeb622-6b36-4961-a88b-51b6189e1232"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213259Z:0ebeb622-6b36-4961-a88b-51b6189e1232"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:58 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b28e882a-c349-45c1-8dcf-c44868e2cf29"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11864"
+ ],
+ "x-ms-request-id": [
+ "6058d396-96ca-47e8-86ba-1b3fb9c8a250"
+ ],
+ "x-ms-correlation-request-id": [
+ "6058d396-96ca-47e8-86ba-1b3fb9c8a250"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213300Z:6058d396-96ca-47e8-86ba-1b3fb9c8a250"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae058a8b-ae84-4d38-827f-ee88c8ea8b50"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11862"
+ ],
+ "x-ms-request-id": [
+ "6c71c907-075a-4f90-a99e-c6f1ff00638a"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c71c907-075a-4f90-a99e-c6f1ff00638a"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213300Z:6c71c907-075a-4f90-a99e-c6f1ff00638a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:32:59 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cdafb353-d6c4-4970-b222-f6cd67c78dd0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11860"
+ ],
+ "x-ms-request-id": [
+ "43610691-bad8-4e13-8718-95b4ac35c095"
+ ],
+ "x-ms-correlation-request-id": [
+ "43610691-bad8-4e13-8718-95b4ac35c095"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213301Z:43610691-bad8-4e13-8718-95b4ac35c095"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4bf92832-e6c6-475c-8441-032ffd4e5227"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11858"
+ ],
+ "x-ms-request-id": [
+ "98325e4b-94c3-45e5-91dd-197ec42a3f91"
+ ],
+ "x-ms-correlation-request-id": [
+ "98325e4b-94c3-45e5-91dd-197ec42a3f91"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213301Z:98325e4b-94c3-45e5-91dd-197ec42a3f91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f255d78-b52b-4ecc-a2a4-110665d221c7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11856"
+ ],
+ "x-ms-request-id": [
+ "3ddce0ec-f69b-455c-892f-5b6f5766709b"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ddce0ec-f69b-455c-892f-5b6f5766709b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213301Z:3ddce0ec-f69b-455c-892f-5b6f5766709b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:00 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31aafdfa-3f6a-462f-8b35-da709b0b8200"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11854"
+ ],
+ "x-ms-request-id": [
+ "d47ba4c0-f012-4a3f-bf79-9d12a985f037"
+ ],
+ "x-ms-correlation-request-id": [
+ "d47ba4c0-f012-4a3f-bf79-9d12a985f037"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213302Z:d47ba4c0-f012-4a3f-bf79-9d12a985f037"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a74101f5-757c-4337-b009-6cdeffbd44e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11852"
+ ],
+ "x-ms-request-id": [
+ "b41645e4-adbf-436f-92ef-f69fced38882"
+ ],
+ "x-ms-correlation-request-id": [
+ "b41645e4-adbf-436f-92ef-f69fced38882"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213302Z:b41645e4-adbf-436f-92ef-f69fced38882"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:01 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "982f6a53-eebc-4491-bdbf-bf5ea162f9ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11850"
+ ],
+ "x-ms-request-id": [
+ "dd6c7915-d70c-42a8-a750-05448cc0297c"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd6c7915-d70c-42a8-a750-05448cc0297c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213303Z:dd6c7915-d70c-42a8-a750-05448cc0297c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:32:58.8561355Z\",\r\n \"duration\": \"PT27.1388256S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95fd8389-92b4-4247-9651-0a3bb96d8726"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11848"
+ ],
+ "x-ms-request-id": [
+ "ee457198-c314-45c2-8d7e-5686eb1af2c1"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee457198-c314-45c2-8d7e-5686eb1af2c1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213303Z:ee457198-c314-45c2-8d7e-5686eb1af2c1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:02 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a94ed6c1-9932-48cc-82e0-9f5d1a31161f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11846"
+ ],
+ "x-ms-request-id": [
+ "7ba93c5d-a840-4bc4-b5a0-4d88cf997f2b"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ba93c5d-a840-4bc4-b5a0-4d88cf997f2b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213304Z:7ba93c5d-a840-4bc4-b5a0-4d88cf997f2b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20adcb1f-77a4-45f5-884d-815308219542"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11844"
+ ],
+ "x-ms-request-id": [
+ "826c77f2-c935-4da6-bb5a-f7a8bfb993a2"
+ ],
+ "x-ms-correlation-request-id": [
+ "826c77f2-c935-4da6-bb5a-f7a8bfb993a2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213304Z:826c77f2-c935-4da6-bb5a-f7a8bfb993a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:03 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "91f35c4c-e7a3-4431-a3bb-e1d94de129ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11842"
+ ],
+ "x-ms-request-id": [
+ "99d32116-0b95-4e03-b7f9-6d09dfa1a30c"
+ ],
+ "x-ms-correlation-request-id": [
+ "99d32116-0b95-4e03-b7f9-6d09dfa1a30c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213305Z:99d32116-0b95-4e03-b7f9-6d09dfa1a30c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "278e2abe-d5ea-4e8f-a59a-29a63911a70d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11840"
+ ],
+ "x-ms-request-id": [
+ "ce855b89-d0b9-4b96-a6e1-7eae8f2853f2"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce855b89-d0b9-4b96-a6e1-7eae8f2853f2"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213305Z:ce855b89-d0b9-4b96-a6e1-7eae8f2853f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:04 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "325aae46-45a7-43f6-b3d4-0c809a81177c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11838"
+ ],
+ "x-ms-request-id": [
+ "b6b7485d-d713-4f89-849d-4adc2d691674"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6b7485d-d713-4f89-849d-4adc2d691674"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213306Z:b6b7485d-d713-4f89-849d-4adc2d691674"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "98e74fdf-834c-4b00-a28b-0241beed4407"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11836"
+ ],
+ "x-ms-request-id": [
+ "26611955-e511-4aa7-9fd5-d8483c7d7c9d"
+ ],
+ "x-ms-correlation-request-id": [
+ "26611955-e511-4aa7-9fd5-d8483c7d7c9d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213306Z:26611955-e511-4aa7-9fd5-d8483c7d7c9d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1f7f3239-6ea1-4811-bfae-022efe42ebf8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11834"
+ ],
+ "x-ms-request-id": [
+ "0572057f-42ef-4438-91e0-27fb4a825419"
+ ],
+ "x-ms-correlation-request-id": [
+ "0572057f-42ef-4438-91e0-27fb4a825419"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213306Z:0572057f-42ef-4438-91e0-27fb4a825419"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:05 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed238bff-8a6e-4636-ae8d-909785948fa2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11832"
+ ],
+ "x-ms-request-id": [
+ "dee7e731-a40e-4f8a-8625-b4214634dd9f"
+ ],
+ "x-ms-correlation-request-id": [
+ "dee7e731-a40e-4f8a-8625-b4214634dd9f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213307Z:dee7e731-a40e-4f8a-8625-b4214634dd9f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2c0e5005-d1eb-4ff3-be67-068d98d6d5b1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11830"
+ ],
+ "x-ms-request-id": [
+ "2f96a9a5-4b3c-4e51-86dd-46c9bb7a8c7b"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f96a9a5-4b3c-4e51-86dd-46c9bb7a8c7b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213307Z:2f96a9a5-4b3c-4e51-86dd-46c9bb7a8c7b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da90ad5d-9071-4dbc-aa17-f120be10939a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11828"
+ ],
+ "x-ms-request-id": [
+ "2e21164f-ccb6-4bda-9bc1-2d7fe3a01cd9"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e21164f-ccb6-4bda-9bc1-2d7fe3a01cd9"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213308Z:2e21164f-ccb6-4bda-9bc1-2d7fe3a01cd9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f13757f6-6994-467c-b694-dcc592cf4056"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11826"
+ ],
+ "x-ms-request-id": [
+ "e76c8c4c-c4b0-4d56-9938-a11775ffd98b"
+ ],
+ "x-ms-correlation-request-id": [
+ "e76c8c4c-c4b0-4d56-9938-a11775ffd98b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213308Z:e76c8c4c-c4b0-4d56-9938-a11775ffd98b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:08 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:03.3576773Z\",\r\n \"duration\": \"PT31.6403674S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "66e7ff11-366a-4802-b2bc-84ccf0f7739d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11824"
+ ],
+ "x-ms-request-id": [
+ "40034438-6fbd-45da-b1b1-dc4f1d2933b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "40034438-6fbd-45da-b1b1-dc4f1d2933b4"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213309Z:40034438-6fbd-45da-b1b1-dc4f1d2933b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d10320b-2f7e-4e6f-844f-af99fa523338"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11822"
+ ],
+ "x-ms-request-id": [
+ "0e124b9b-a64c-49f1-8372-b8deb49b09d1"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e124b9b-a64c-49f1-8372-b8deb49b09d1"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213309Z:0e124b9b-a64c-49f1-8372-b8deb49b09d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "989eb014-67d8-4e9e-a8a6-a3ac59177742"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11820"
+ ],
+ "x-ms-request-id": [
+ "f55aa8be-ecce-4bd7-a259-f9afb2f21f2c"
+ ],
+ "x-ms-correlation-request-id": [
+ "f55aa8be-ecce-4bd7-a259-f9afb2f21f2c"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213309Z:f55aa8be-ecce-4bd7-a259-f9afb2f21f2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:09 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a4e7638c-c3cd-456b-a68a-61c40a91bdc2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11818"
+ ],
+ "x-ms-request-id": [
+ "caa93917-fa1a-4b98-a456-73b7e6326829"
+ ],
+ "x-ms-correlation-request-id": [
+ "caa93917-fa1a-4b98-a456-73b7e6326829"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213310Z:caa93917-fa1a-4b98-a456-73b7e6326829"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "80c8536d-de89-46da-b412-afb78463d907"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11816"
+ ],
+ "x-ms-request-id": [
+ "93327bba-20ac-4d95-90c9-d0ac3b346cbb"
+ ],
+ "x-ms-correlation-request-id": [
+ "93327bba-20ac-4d95-90c9-d0ac3b346cbb"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213310Z:93327bba-20ac-4d95-90c9-d0ac3b346cbb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:10 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "095cfd5e-6548-4467-94b0-3918822b329e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11814"
+ ],
+ "x-ms-request-id": [
+ "9dd8a26b-2018-44ab-84b2-5d49b57021f8"
+ ],
+ "x-ms-correlation-request-id": [
+ "9dd8a26b-2018-44ab-84b2-5d49b57021f8"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213311Z:9dd8a26b-2018-44ab-84b2-5d49b57021f8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0c96f6d-1a33-4577-b802-2afe4d4d1a6c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11812"
+ ],
+ "x-ms-request-id": [
+ "419cb894-0e01-4c8d-971c-93bf63fd9122"
+ ],
+ "x-ms-correlation-request-id": [
+ "419cb894-0e01-4c8d-971c-93bf63fd9122"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213311Z:419cb894-0e01-4c8d-971c-93bf63fd9122"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:11 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "18bc8993-ce05-44d6-9308-772fb06aa8dc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11810"
+ ],
+ "x-ms-request-id": [
+ "f48bbd8f-3e57-4935-a9e9-30100ba93c1b"
+ ],
+ "x-ms-correlation-request-id": [
+ "f48bbd8f-3e57-4935-a9e9-30100ba93c1b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213312Z:f48bbd8f-3e57-4935-a9e9-30100ba93c1b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "602ba626-11f5-4f47-b823-34627257ce3c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11808"
+ ],
+ "x-ms-request-id": [
+ "6d71bb8e-82b1-4fc6-8dd1-9bde9730142b"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d71bb8e-82b1-4fc6-8dd1-9bde9730142b"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213312Z:6d71bb8e-82b1-4fc6-8dd1-9bde9730142b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "87fb9f4d-db09-40f7-96a3-7110a5ea9d70"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11806"
+ ],
+ "x-ms-request-id": [
+ "93324563-bedc-49ca-a1e9-799013d5116d"
+ ],
+ "x-ms-correlation-request-id": [
+ "93324563-bedc-49ca-a1e9-799013d5116d"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213313Z:93324563-bedc-49ca-a1e9-799013d5116d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:12 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "db7c0cde-135b-4e6d-8f32-9b6bd86bfce6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11804"
+ ],
+ "x-ms-request-id": [
+ "0be50e12-b091-4b57-86ed-db6f068cae6f"
+ ],
+ "x-ms-correlation-request-id": [
+ "0be50e12-b091-4b57-86ed-db6f068cae6f"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213313Z:0be50e12-b091-4b57-86ed-db6f068cae6f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShellVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"3.3\"\r\n },\r\n \"scriptSuffix\": {\r\n \"type\": \"String\",\r\n \"value\": \"74716711-9e78-4979-a0fd-b7f67ca6edea\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-05-14T21:33:08.7618197Z\",\r\n \"duration\": \"PT37.0445098S\",\r\n \"correlationId\": \"c9d2a9c3-3658-4573-96a7-c3a2bcb11044\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4412/providers/Microsoft.Resources/deployments/ps3021?api-version=2019-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQxMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMwMjE/YXBpLXZlcnNpb249MjAxOS0xMC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9101b477-68f1-4b14-bdc8-f01b7841421e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.7.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11802"
+ ],
+ "x-ms-request-id": [
+ "e89bca46-2bc5-4284-b92f-dffc064fbee3"
+ ],
+ "x-ms-correlation-request-id": [
+ "e89bca46-2bc5-4284-b92f-dffc064fbee3"
+ ],
+ "x-ms-routing-request-id": [
+ "NORTHCENTRALUS:20200514T213313Z:e89bca46-2bc5-4284-b92f-dffc064fbee3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 14 May 2020 21:33:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4412/providers/Microsoft.Resources/deployments/ps3021\",\r\n \"name\": \"ps3021\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"35108688704450286\",\r\n \"parameters\": {\r\n \"arguments\": {\r\n \"type\": \"String\",\r\n \"value\": \"\"\r\n },\r\n \"managedIdentityId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/Ds-TestRg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/filiz-user-assigned-msi\"\r\n },\r\n \"scriptContent\": {\r\n \"type\": \"String\",\r\n \"value\": \"$DeploymentScriptOutputs['RGs'] = Get-AzResourceGroup \\n Write-Output $DeploymentScriptOutputs['RGs']\"\r\n },\r\n \"scriptCleanupPreference\": {\r\n \"type\": \"String\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n \"retentionInterval\": {\r\n \"type\": \"String\",\r\n \"value\": \"P1D\"\r\n },\r\n \"timeout\": {\r\n \"type\": \"String\",\r\n \"value\": \"PT30M\"\r\n },\r\n \"scriptKind\": {\r\n \"type\": \"String\",\r\n \"value\": \"AzurePowerShell\"\r\n },\r\n \"azPowerShel